Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
As a result of a Vlookup formula a cell gives #N/A. The formula and the data
that it looks up is good. It should give a #N/A. I need the cell instead of displaying #N/A to display nothing (blank) without deleting the formula. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try
=if(isna(vlookup(...),"",vlookup()) "yrat" wrote in message ... As a result of a Vlookup formula a cell gives #N/A. The formula and the data that it looks up is good. It should give a #N/A. I need the cell instead of displaying #N/A to display nothing (blank) without deleting the formula. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=if(isna(vlookup....),"",vlookup(....))
************ Hope it helps! Anne Troy www.OfficeArticles.com "yrat" wrote in message ... As a result of a Vlookup formula a cell gives #N/A. The formula and the data that it looks up is good. It should give a #N/A. I need the cell instead of displaying #N/A to display nothing (blank) without deleting the formula. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
if(isna(your lookup formula),"",your lookup formula)
-- paul remove nospam for email addy! "yrat" wrote: As a result of a Vlookup formula a cell gives #N/A. The formula and the data that it looks up is good. It should give a #N/A. I need the cell instead of displaying #N/A to display nothing (blank) without deleting the formula. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
An alternative to direct error-trapping would be to use conditional
formatting to mask the display, with the active cell formula, eg: = ISNA(A1), then choosing a font color to match the cell's fill color (eg applying a white font color, which blends with the default cell fill of "no colour") -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "yrat" wrote in message ... As a result of a Vlookup formula a cell gives #N/A. The formula and the data that it looks up is good. It should give a #N/A. I need the cell instead of displaying #N/A to display nothing (blank) without deleting the formula. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Example:
Assuming the VLOOKUPs are say, in A1:A10 To mask the possible returns of #N/As within the VLOOKUP range with conditional formatting .. Select A1:A10 (ensure A1 is the active cell) Click Format Cond Formatting Formula is: =ISNA(A1) Click Format button Font tab Font color white*? OK Click OK at the main dialog *choose a font color which matches the cell's fill color -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(ISNA(VLOOKUP)),"",VLOOKUP())
"yrat" wrote: As a result of a Vlookup formula a cell gives #N/A. The formula and the data that it looks up is good. It should give a #N/A. I need the cell instead of displaying #N/A to display nothing (blank) without deleting the formula. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
I want to copy a formula n Excel but skip any blank cells | Excel Worksheet Functions | |||
Replace data with the result of a formula | Excel Discussion (Misc queries) | |||
My formula in Excel 2002 reads: =12.08*85.60 result 1034.048 | Excel Worksheet Functions | |||
Excel - return a picture or range rows as the result of a formula | Excel Worksheet Functions | |||
how do i create a blank cell in excel using a formula | Excel Worksheet Functions |