Google-sheets – 1) get unique names AND 2) strip out vacancy AND 3) alpha sort AND 4) append Last name, first name

formulasgoogle sheetsgoogle-sheets-arrays

I want to 1) get unique names AND 2) strip out vacancy AND 3) alpha sort AND 4) append Last name, first name.

The names are in Sheet1 and the results are in Sheet2.

I'm using =SORT(UNIQUE(Sheet1!A3:A), 1, TRUE) to do steps 1, 2 & 3, and that plops the first names in Sheet2 but I don't know how do step 4: to grab the corresponding last name in Sheet1 and append it to the corresponding first name in Sheet1 and put them in Sheet2.

Best Answer

Try: =SORT(UNIQUE(A3:B), 1, TRUE)