A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
You can use CONCATENATE and VLOOKUP by nesting them.
Let's assume that the Employee ID is entered in the cell G10, the table range is $A$1 to $D$100, First names are in column B, Last Names are in column C, then you can use the following formula:
=CONCATENATE(VLOOKUP(G10,$A$1:$D$100,2,FALSE),", ",VLOOKUP(G10,$A$1:$D$100,3,FALSE))
We are extracting the first name and last name using two VLOOKUPs and then combining them using CONCATENATE and also giving the comma and space between first and last name.
Hope this helps.