L
Legacy 313594
Guest
Any advice as to why the below formula isn't working? My goal is supposed to return a "1" if the vlookup identifier is not found (ISNA) & add a 1 to the cell IF the identifier is found (IF, +1).
Any advice? I've pasted what I am working on below
The code that works for me but only adds 1 to the identifier is found is below, in addition to that if the identifier ISNT found I want the #N/A to be 1
Any advice? I've pasted what I am working on below
Code:
=IF(ISNA(VLOOKUP(C[-2],'[PBDunkAcc.xlsx]Merrill Accounts'!C3:C5,3,FALSE),"1",VLOOKUP(C[-2],'[PBDunkAcc.xlsx]Merrill Accounts'!C3:C5,3,FALSE))+1,1)
The code that works for me but only adds 1 to the identifier is found is below, in addition to that if the identifier ISNT found I want the #N/A to be 1
Code:
=IF(VLOOKUP(C[-2],'[PBDunkAcc.xlsx]Merrill Accounts'!C3:C5,3,FALSE),VLOOKUP(C[-2],'[PBDunkAcc.xlsx]Merrill Accounts'!C3:C5,3,FALSE)+1,1)