From: Amin on
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.
From: ozgrid.com on
see http://www.ozgrid.com/Excel/stop-na-vlookup.htm



--
Regards
Dave Hawley
www.ozgrid.com
"Amin" <Amin(a)discussions.microsoft.com> wrote in message
news:37FE3F4E-D7CD-43F1-9B96-19A49E643FAA(a)microsoft.com...
>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.

From: Jacob Skaria on
One wa is to use ISNA() IF() combination to handle the error

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

--
Jacob (MVP - Excel)


"Amin" wrote:

> 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.