Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
When using this function I've found that when the function cannot find the
value it's looking for, it returns the #N/A value. I was wondering if there is a way for it to return a blank cell instead? I've been plyaing around trying to embed the VLOOKUP in an IF function to get the blank, but with no luck. Any suggestions? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try something like: =IF(ISNA(VLOOKUP(...)),"",VLOOKUP(...))
-- Rgds Max xl 97 --- Singapore, GMT+8 xdemechanik http://savefile.com/projects/236895 -- "nyys" wrote in message ... When using this function I've found that when the function cannot find the value it's looking for, it returns the #N/A value. I was wondering if there is a way for it to return a blank cell instead? I've been plyaing around trying to embed the VLOOKUP in an IF function to get the blank, but with no luck. Any suggestions? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Hello, try =if(isna(VLOOKUP(A1,I3:M11,2,FALSE)),0,VLOOKUP(A1, I3:M11,2,FALSE)) Then if #na comes up (ie it cannot find the value) it will replace the #na with a 0 or anything else you want. Cheers, Bel "nyys" wrote: When using this function I've found that when the function cannot find the value it's looking for, it returns the #N/A value. I was wondering if there is a way for it to return a blank cell instead? I've been plyaing around trying to embed the VLOOKUP in an IF function to get the blank, but with no luck. Any suggestions? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
PERFECT! Thank you!
-paul "Belinda_Tim" wrote: Hello, try =if(isna(VLOOKUP(A1,I3:M11,2,FALSE)),0,VLOOKUP(A1, I3:M11,2,FALSE)) Then if #na comes up (ie it cannot find the value) it will replace the #na with a 0 or anything else you want. Cheers, Bel "nyys" wrote: When using this function I've found that when the function cannot find the value it's looking for, it returns the #N/A value. I was wondering if there is a way for it to return a blank cell instead? I've been plyaing around trying to embed the VLOOKUP in an IF function to get the blank, but with no luck. Any suggestions? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're on the right track... =if(isna(vlookup(...)),"",vlookup()).
--Bruce "nyys" wrote: When using this function I've found that when the function cannot find the value it's looking for, it returns the #N/A value. I was wondering if there is a way for it to return a blank cell instead? I've been plyaing around trying to embed the VLOOKUP in an IF function to get the blank, but with no luck. Any suggestions? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
vlookup and calculation questions | Excel Worksheet Functions | |||
Using single cell reference as table array argument in Vlookup | Excel Worksheet Functions | |||
VLOOKUP Limitations | Excel Worksheet Functions | |||
Have Vlookup return a Value of 0 instead of #N/A | Excel Worksheet Functions | |||
vlookup data hidden within worksheet | Excel Worksheet Functions |