Hi,
My current formula is:
=VLOOKUP($G$3:$G$6000,$Q$3:$R$14,2,FALSE)
Please could somebody tell me how I get it to ignore blanks and not come up with #N/A?
Thanks
[FONT=Lucida Console]=IF($G3="","",IFERROR(T(VLOOKUP($G3,$Q$3:$R$14,2,0)),""))[/FONT]
[FONT=Lucida Console]=IF($G3="","",IFERROR(VLOOKUP($G3,$Q$3:$R$14,2,0),""))[/FONT]
[FONT=Lucida Console]=IF($G3="","",LOOKUP(REPT("z",255),CHOOSE({1,2},"",[/FONT]
[FONT=Lucida Console] VLOOKUP($G3,$Q$3:$R$14,2,0))))[/FONT]
[FONT=Lucida Console]=IF($G3="","",LOOKUP(9.99999999999999E+307,CHOOSE({1,2},0,[/FONT]
[FONT=Lucida Console] VLOOKUP($G3,$Q$3:$R$14,2,0))))[/FONT]
Hi,
I have tried this for another part but everything stays blank.
=IF(A4="","",LOOKUP(REPT("z",255),CHOOSE({1,2},"",VLOOKUP(A4,Sheet2!A4:M4000,11,FALSE))))
Can anyone help please?
Thanks
I have also tried this one:
=IF(A5="","",IFERROR(T(VLOOKUP(A5,Sheet2!A5:M4001,11,FALSE)),""))
The same thing happens - It worked perfectly before for the other one.
Thanks
Hi - I simply used =if(a4="","",VLOOKUP(A4,Sheet2!A4:M4000,11,FALSE)
Seems to be working perfectly - Thanks again for all of your help