Thread: Avoiding #N/A
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default Avoiding #N/A

Use ISNA() to handle this

=IF(ISNA(formula),"",formula)

If this post helps click Yes
---------------
Jacob Skaria


"Heather" wrote:

I would like to fix an input screen that prices out a product once selected
but when they clear their selection it puts a #n/a in the cell

the formula in Cell B13 is
=(B27*B28*B29)

Below once cleared
B27 = #N/A

so I want Cell B13 to be blank not #N/A when they don't have a selection
picked, can I do that?