Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This is similar to other questions I've seen posted but unfortunately I can't
get my formula to work. If the value I lookup does not have a value on the pivot table I'm searching, I'd like to return a blank cell instead of #N/A in the cell. The vlookup formula I'm using is: =VLOOKUP($B2,'Vacay Pivot'!$A$5:$G$1788,2,FALSE) I'm by no means great in excel so if anyone can offer advice as to how to use an if statement with this lookup formula to return a blank cell instead of #N/A I would be SOOO grateful. Thank you! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
=IF(COUNTIF('Vacay Pivot'!$A$5:$A$1788,$B2),VLOOKUP($B2,'Vacay Pivot'!$A$5:$G$1788,2,0),"") Biff "Franky88" wrote in message ... This is similar to other questions I've seen posted but unfortunately I can't get my formula to work. If the value I lookup does not have a value on the pivot table I'm searching, I'd like to return a blank cell instead of #N/A in the cell. The vlookup formula I'm using is: =VLOOKUP($B2,'Vacay Pivot'!$A$5:$G$1788,2,FALSE) I'm by no means great in excel so if anyone can offer advice as to how to use an if statement with this lookup formula to return a blank cell instead of #N/A I would be SOOO grateful. Thank you! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VLOOKUP RETURN BLANK | Excel Worksheet Functions | |||
VLOOKUP CONDITION TO RETURN BLANK CELL WHERE LOOKUP VALUE IS NOT IN TABLE ARRAY | Excel Worksheet Functions | |||
Vlookup return 0 when cell is blank | Excel Worksheet Functions | |||
How do I return a blank for VLOOKUP instead of #N/A? | Excel Worksheet Functions | |||
I need Vlookup to return a blank | Excel Discussion (Misc queries) |