I'm trying to write a formula that is looking up an ID number in 4 different tabs and returning the value of a data point in whichever tab that ID number is in. Says i have too many arguments.
Tabs A, B, C, and D
Person #1234
IF(ISERROR(VLOOKUP(A3,A!A:A,1,0)),IF(ISERROR(VLOOKUP(A3,B!B:B,1,0)),IF(ISERROR(VLOOKUP(A3,C!B:B,1,0)),IF(ISERROR(VLOOKUP(A3,D!B:B,1,0)),"",VLOOKUP(A3,D!B:AI,4,0)),vlookup(A3,C!B:AI,4,0)),vlookup(A3,B!B:AI,4,0),vlookup(A3,A!A:A,1,0))
Tabs A, B, C, and D
Person #1234
IF(ISERROR(VLOOKUP(A3,A!A:A,1,0)),IF(ISERROR(VLOOKUP(A3,B!B:B,1,0)),IF(ISERROR(VLOOKUP(A3,C!B:B,1,0)),IF(ISERROR(VLOOKUP(A3,D!B:B,1,0)),"",VLOOKUP(A3,D!B:AI,4,0)),vlookup(A3,C!B:AI,4,0)),vlookup(A3,B!B:AI,4,0),vlookup(A3,A!A:A,1,0))