I'd like to use column D as Index or lookup value. Then I want to concatenate the values from column B and C into Column E.
I can use =VLOOKUP(D2,A2:C6,2,FALSE)
or =INDEX($B$2:$B$6,MATCH("Person 1",$A$2:$A$6,0))
but I don't know how to use it multiple times in the same column.Is there a way I combine those to search multiple times in the same column?
I'd be open to using vba if that would be a better option, just still not sure about the multiple times per column.