Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Q1) How do i get a cell to show/display zero when no data has been input or
when the dat has been deleted. Q2)how do i get a cell to display 0 instead of #DIV/0! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
David,
Hide the error with =IF(ISERROR(A1/B1),0,A1/B1) Miek "David" wrote: Q1) How do i get a cell to show/display zero when no data has been input or when the dat has been deleted. Q2)how do i get a cell to display 0 instead of #DIV/0! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Check to see if the denominator is zero first:
=if(a1=0,"",b1/a1) or check for an error =if(iserror(b1/a1),"",b1/a1) David wrote: Q1) How do i get a cell to show/display zero when no data has been input or when the dat has been deleted. Q2)how do i get a cell to display 0 instead of #DIV/0! -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Oops, you wanted 0's.
#1. You can't. #2. Check to see if the denominator is zero first: =if(a1=0,0,b1/a1) or check for an error =if(iserror(b1/a1),0,b1/a1) David wrote: Q1) How do i get a cell to show/display zero when no data has been input or when the dat has been deleted. Q2)how do i get a cell to display 0 instead of #DIV/0! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel: match two cells in one sheet to two cells in another and return a third cells value | Excel Worksheet Functions | |||
Setting of input cells as blue font and formula cells as black fon | Excel Discussion (Misc queries) | |||
conditional formating cells i Excel based on other cells values | Excel Worksheet Functions | |||
trying to create an (almost) circular formula between cells and data validated cells with lists | Excel Worksheet Functions | |||
Pasting single cells from Word to multiple cells in Excel | Excel Worksheet Functions |