Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am using a VLookup formula to collect data from a sheet, but every time I
get '#N/A#' error in one cell & the entire formula returns an error message. I need to intervene manually to fix, which causes alot of time wastage. I tried using 'conditional formatting'but had no luck. Pls suggest a quick solution. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The answer will depend on how you want it fixed. Do you want the N/A to
cause the final result to be blank or 0, or to somehow indicate an error? If so, you can detect the issue inside an if: =if(isna(vlookup(...)),0,vlookup(...)) "Ali Khan" wrote: I am using a VLookup formula to collect data from a sheet, but every time I get '#N/A#' error in one cell & the entire formula returns an error message. I need to intervene manually to fix, which causes alot of time wastage. I tried using 'conditional formatting'but had no luck. Pls suggest a quick solution. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(ISNA(YourVlookupFormula),"",YourVlookupFormula )
Vaya con Dios, Chuck, CABGx3 "Ali Khan" wrote: I am using a VLookup formula to collect data from a sheet, but every time I get '#N/A#' error in one cell & the entire formula returns an error message. I need to intervene manually to fix, which causes alot of time wastage. I tried using 'conditional formatting'but had no luck. Pls suggest a quick solution. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula to replace invalid filename characters | Excel Worksheet Functions | |||
Match then lookup | Excel Worksheet Functions | |||
Simplifying array formula which evaluates as error. | Excel Worksheet Functions | |||
how to reference external refereces from a list | Excel Worksheet Functions | |||
How to write a formula that will prevent appearance ERROR MESSAGE | Excel Worksheet Functions |