I am trying to do a Double nested vlookup where vlookup 1 looks for DOB in range and and vllokup 2 looks for surname in range, only when both vlookups match will it return the corresponding column value
=IF(VLOOKUP(Sheet1!A1,Sheet3!$A:$G,(VLOOKUP(Sheet1!F1,Sheet3!$F:$F,1,FALSE)),FALSE),"NULL")
I get #N/A
Sheet1
A B C D E F
D.O.B OTHER TITLE FORENAME MIDDLE SURNAME
01-01-10 0 MR JOE N BLOGGS
Sheet3
A B C D E F
D.O.B OTHER TITLE FORENAME MIDDLE SURNAME
03-04-11 1 MISS DORIS N BRIGGS
01-01-10 0 MR JOE N BLOGGS
01-01-10 0 MR DEREK N SMITH
I want the output to show record 2 details in Sheet 3, in this case the output should be
vlookup1 - 01-01-10
vlookup2 - BLOGGS
In other words only return results from sheet3 in row when 01-01-10 and BLOGGS appears in range row
Please help
=IF(VLOOKUP(Sheet1!A1,Sheet3!$A:$G,(VLOOKUP(Sheet1!F1,Sheet3!$F:$F,1,FALSE)),FALSE),"NULL")
I get #N/A
Sheet1
A B C D E F
D.O.B OTHER TITLE FORENAME MIDDLE SURNAME
01-01-10 0 MR JOE N BLOGGS
Sheet3
A B C D E F
D.O.B OTHER TITLE FORENAME MIDDLE SURNAME
03-04-11 1 MISS DORIS N BRIGGS
01-01-10 0 MR JOE N BLOGGS
01-01-10 0 MR DEREK N SMITH
I want the output to show record 2 details in Sheet 3, in this case the output should be
vlookup1 - 01-01-10
vlookup2 - BLOGGS
In other words only return results from sheet3 in row when 01-01-10 and BLOGGS appears in range row
Please help
Last edited: