Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am working on a form where I am putting formulas in order for other users
of the the form can plug in numbers and they can get a sum. The formula is =(c19/c18) and until numbers are placed in the cells mentioned, there will be "#DIV/0!". How would I hide this without hiding the sum for the formula when numbers are entered into those cells. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am working on a form where I am putting formulas in order for other users
of the the form can plug in numbers and they can get a sum. The formula is =(c19/c18) and until numbers are placed in the cells mentioned, there will be "#DIV/0!". How would I hide this without hiding the sum for the formula when numbers are entered into those cells. This seems to work... =IF(ISERR(C19/C18),"",C19/C18) Rick |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
how about
=if(c18=0,"",c19/c18) or =if(iserror(c19/c18),"",c19/c18) "Xena_Peel" wrote: I am working on a form where I am putting formulas in order for other users of the the form can plug in numbers and they can get a sum. The formula is =(c19/c18) and until numbers are placed in the cells mentioned, there will be "#DIV/0!". How would I hide this without hiding the sum for the formula when numbers are entered into those cells. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=IF(C18=0,"",C19/C18) Biff "Xena_Peel" wrote in message ... I am working on a form where I am putting formulas in order for other users of the the form can plug in numbers and they can get a sum. The formula is =(c19/c18) and until numbers are placed in the cells mentioned, there will be "#DIV/0!". How would I hide this without hiding the sum for the formula when numbers are entered into those cells. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hidding formulars used in a worksheet | Excel Worksheet Functions | |||
Hidding the formula and limiting users | Excel Discussion (Misc queries) | |||
Hidding Macro names and coding | Excel Discussion (Misc queries) | |||
Pivot table hidding zeros in sum of amount | Excel Discussion (Misc queries) | |||
Hidding Tabs | Excel Discussion (Misc queries) |