Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I neglected to include my formula in the 1st message. Sorry. Here it is:
=VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE) -- Thanks from Salt Spring |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=if(b4="","",VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE))
Koomba wrote: I neglected to include my formula in the 1st message. Sorry. Here it is: =VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE) -- Thanks from Salt Spring -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Dave: that was SIMPLY great. Thanks
-- Thanks from Salt Spring "Dave Peterson" wrote: =if(b4="","",VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE)) Koomba wrote: I neglected to include my formula in the 1st message. Sorry. Here it is: =VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE) -- Thanks from Salt Spring -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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),"") -- Thanks, Shane Devenshire "Koomba" wrote: I neglected to include my formula in the 1st message. Sorry. Here it is: =VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE) -- Thanks from Salt Spring |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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, "Koomba" wrote: I neglected to include my formula in the 1st message. Sorry. Here it is: =VLOOKUP(B4,'Price List'!$A$3:$B$13,2,FALSE) -- Thanks from Salt Spring |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
checking for blank cells when using vlookup | Excel Worksheet Functions | |||
check a row ignore blank cells print only those with text | Excel Discussion (Misc queries) | |||
check for two blank cells before populating a 3rd. | Excel Worksheet Functions | |||
Need Vlookup to return a value of $0.00 in blank cells | Excel Worksheet Functions | |||
Need Vlookup to return a value of $0.00 in blank cells | Excel Worksheet Functions |