Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I an working with the following formula: =SUM(C8:E8)/COUNTIF(C8:E8,"0") if I
initially have no data entered i get the #div/0! 's is there a fix for this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(COUNTIF(C8:E8,"0")=0,"",SUM(C8:E8)/COUNTIF(C8:E8,"0"))
-- David Biddulph "Bryan" wrote in message ... I an working with the following formula: =SUM(C8:E8)/COUNTIF(C8:E8,"0") if I initially have no data entered i get the #div/0! 's is there a fix for this? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
=IF(COUNT(C8:E8)0,SUM(C8:E8)/COUNTIF(C8:E8,"0"),"") -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "Bryan" wrote: I an working with the following formula: =SUM(C8:E8)/COUNTIF(C8:E8,"0") if I initially have no data entered i get the #div/0! 's is there a fix for this? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(COUNT(C8:E8)0,SUM(C8:E8)/COUNTIF(C8:E8,"0"),"")
your formula fail if C8: 0, D8: blank, C8: blank, or all 0s or 0,0, blank Robust formula: =IF(COUNTIF(C8:E8,"0"),SUM(C8:E8)/COUNTIF(C8:E8,"0"),"") "Mike H" wrote: Hi, =IF(COUNT(C8:E8)0,SUM(C8:E8)/COUNTIF(C8:E8,"0"),"") -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "Bryan" wrote: I an working with the following formula: =SUM(C8:E8)/COUNTIF(C8:E8,"0") if I initially have no data entered i get the #div/0! 's is there a fix for this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need to average data if in cells, but ignore blank cells. | Excel Worksheet Functions | |||
Match Dates in Two Cells and Ignore subsequent Cells | Excel Discussion (Misc queries) | |||
Count cells with numbers and ignore cells with errors | Excel Discussion (Misc queries) | |||
How do I count cells with text but ignore cells with spaces? | Excel Discussion (Misc queries) | |||
how can i ignore blank cells when multiple cells? | Excel Worksheet Functions |