I am trying to grab some columns from Sheet 2 based on the filenumber (which is on both sheets).
this is what my Sheet 2 looks like. There are more columns but just so you see the first few...
my columns have numbers, not letters(for whatever reason).
this is in column 34 on Sheet 1:
these are my results:
I have no idea why it's grabbing the following and nothing else:
name_first, name_suffix, st, z5, z4
Any help would be greatly appreciated..
this is what my Sheet 2 looks like. There are more columns but just so you see the first few...
Code:
filenumber, name_first, name_last, name_suffix, street_address, p_city_name, st, z5, z4
my columns have numbers, not letters(for whatever reason).
this is in column 34 on Sheet 1:
Code:
=VLOOKUP(C[-33],Sheet2!C[-33]:C[16],2,FALSE)
these are my results:
Code:
JOHN #N/A 0 #N/A #N/A IA 50428 2510
I have no idea why it's grabbing the following and nothing else:
name_first, name_suffix, st, z5, z4
Any help would be greatly appreciated..