View Single Post
  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
[email protected] arogg@payroll.nyc.gov is offline
external usenet poster
 
Posts: 6
Default Make #N/A blank if no value is returned

On Jul 17, 9:20 am, Babs in Ohio
wrote:
Using VLOOKUP some of my values are #N/A. The formula I am using is:

=VLOOKUP(1,$X$10:$Z$17,3,FALSE)

If the value returned is #N/A how can I make it display blank or null?
--
Babs



Try this:

=IF(ISNA(VLOOKUP(1,$A$10:$C$17,3,FALSE))," ",VLOOKUP(1,$A$10:$C
$17,3,FALSE))

Allan Rogg