To deal with #NA

  • Thread starter Thread starter Amin
  • Start date Start date
A

Amin

i want to stop the #N/A showing in my cells where the VLookup has been used
is it possiblt to stop them from showing when a a lookup value is not yet
available.
 
One wa is to use ISNA() IF() combination to handle the error

=IF(ISNA(vlookupformula),"",vlookupformula)
 
Back
Top