Vlookup cross sheet help
Options
Nancy Skoulphong
ββββ
Greetings! I am struggling with a vlookup formula.
I want to auto-populate dataΒ the IPC Name and IPC Email from sheet 2 based on the campus entered in sheet 1.Β
I have tried variations and keep getting invalid data type. Help
=VLOOKUP([Campus]@row, {Sheet2Β 3}, {Sheet2Β 2}, false)
Comments
-
The basic formula is =VLOOKUP(search_value,lookup_table,column_num,[match_type]
Here's the formula you need:Β
=IFERROR(VLOOKUP(Campus@row, {Sheet 2 Range 1}, 2, false), "No Match")