Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using this formula. I am getting the correct results if the cell has
something in is. I am getting #N/A if the cell is blank. If the reference cell is blank I would like the results to also be blank. Can you help me? =IF(A6="","",VLOOKUP(A6,'[Trust Accounts template.xls]Member List'!$A$4:$I$100,9,FALSE)) Thank you. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Please reference earlier post of same title. (missing exclamation mark)
-- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Marysam67" wrote: I am using this formula. I am getting the correct results if the cell has something in is. I am getting #N/A if the cell is blank. If the reference cell is blank I would like the results to also be blank. Can you help me? =IF(A6="","",VLOOKUP(A6,'[Trust Accounts template.xls]Member List'!$A$4:$I$100,9,FALSE)) Thank you. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The exclamation mark is there. The formula I posted is different.
"Luke M" wrote: Please reference earlier post of same title. (missing exclamation mark) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Marysam67" wrote: I am using this formula. I am getting the correct results if the cell has something in is. I am getting #N/A if the cell is blank. If the reference cell is blank I would like the results to also be blank. Can you help me? =IF(A6="","",VLOOKUP(A6,'[Trust Accounts template.xls]Member List'!$A$4:$I$100,9,FALSE)) Thank you. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try this:
=IF(ISBLANK(A6),"",VLOOKUP(A6,'[Trust Accounts template.xls]Member List'!$A$4:$I$100,9,FALSE)) "Marysam67" wrote: I am using this formula. I am getting the correct results if the cell has something in is. I am getting #N/A if the cell is blank. If the reference cell is blank I would like the results to also be blank. Can you help me? =IF(A6="","",VLOOKUP(A6,'[Trust Accounts template.xls]Member List'!$A$4:$I$100,9,FALSE)) Thank you. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try the below
=IF(ISNA(VLOOKUP(A6,'[Trust Accounts template.xls]Member List'!$A$4:$I$100,9,FALSE)),"",VLOOKUP(A6,'[Trust Accounts template.xls]Member List'!$A$4:$I$100,9,FALSE)) If this post helps click Yes --------------- Jacob Skaria "Marysam67" wrote: I am using this formula. I am getting the correct results if the cell has something in is. I am getting #N/A if the cell is blank. If the reference cell is blank I would like the results to also be blank. Can you help me? =IF(A6="","",VLOOKUP(A6,'[Trust Accounts template.xls]Member List'!$A$4:$I$100,9,FALSE)) Thank you. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VLOOKUP WITH BLANK REFERENCE CELLS | Excel Discussion (Misc queries) | |||
Excel 2002: Return blank when VLOOKUP on blank cells | Excel Discussion (Misc queries) | |||
How to reference last non-blank cell value from a column cells? | Excel Worksheet Functions | |||
Reference blank cells in formula | Excel Discussion (Misc queries) | |||
Very puzzling - how do I reference cells without the blank rows??? | Excel Worksheet Functions |