K Koomba Sep 27, 2008 #1 I neglected to include my formula in the 1st message. Sorry. Here it is: =VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE)
I neglected to include my formula in the 1st message. Sorry. Here it is: =VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE)
S ShaneDevenshire Sep 27, 2008 #4 Hi, Since you didn't include the first message I'm not sure this will help: =IF(B4,VLOOKUP(B4,'Price List'!$A$3:$B$13,2,0),"") Note - if you name the range in the sheet called Price List, for example PL, then your formula no longer needs a sheet reference, and since range names are absolute by default you don't need the $ signs. So your formula can simplify to: =IF(B4,VLOOKUP(B4,PL,2,0),"")
Hi, Since you didn't include the first message I'm not sure this will help: =IF(B4,VLOOKUP(B4,'Price List'!$A$3:$B$13,2,0),"") Note - if you name the range in the sheet called Price List, for example PL, then your formula no longer needs a sheet reference, and since range names are absolute by default you don't need the $ signs. So your formula can simplify to: =IF(B4,VLOOKUP(B4,PL,2,0),"")
F franciz Sep 27, 2008 #5 another basic alternative would be =IF(ISNA(VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE)),"",VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE)) you can have not found by replacing "" with "not found" in the formula. regards,
another basic alternative would be =IF(ISNA(VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE)),"",VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE)) you can have not found by replacing "" with "not found" in the formula. regards,