Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=if(isna(B27*B28*B29),"",(B27*B28*B29))
"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? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=IF(COUNT(B27),PRODUCT(B27:B29),"") -- Biff Microsoft Excel MVP "Heather" wrote in message ... 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? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One mo
=if(count(b27:b29)<3,"not enough numbers",b27*b28*b29) or =if(count(b27:b29)<3,"",b27*b28*b29) 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? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Avoiding Duplicates | Excel Discussion (Misc queries) | |||
avoiding multiplication | Excel Discussion (Misc queries) | |||
Avoiding #value | Excel Worksheet Functions | |||
Avoiding #NUM! | Excel Worksheet Functions | |||
vlookup avoiding #N/A | Excel Worksheet Functions |