I want to search an entire row using Vlookup from another sheet in my workbook. Currently I can only fetch the Name using excel. With sample data & searching for 123
Sheet 1
ID Name Rates
---- ------ -------
123 Onions 25$
125 Tomatoes 6$
Sheet2
VLOOKUP(A2,Sheet1!B3:D5,2)
gives me 123, Onions. I want 123, Onions, 25$.
VLOOKUP(A2,Sheet1!B3:D5,3)
?