Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a formula that gives me an answer of the number of days a case was
worked on. This column has 1500 rows, I want to take the 1500 rows of numbers and generate an average in a cell at the top of the page. Question, some of the rows contain a negative number and I do not want any negative numbers to be reflected in the average formula. How can I create a formula to average Column x3:x1500 and leave out the cells with the negative numbers? Thanks, |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=sumif(x3:x1500,"=0") / countif(x3:x1500,"=0")
or maybe: =if(countif(x3:x1500,"0")=0,"No data!", sumif(x3:x1500,"=0") / countif(x3:x1500,"=0")) Pammy wrote: I have a formula that gives me an answer of the number of days a case was worked on. This column has 1500 rows, I want to take the 1500 rows of numbers and generate an average in a cell at the top of the page. Question, some of the rows contain a negative number and I do not want any negative numbers to be reflected in the average formula. How can I create a formula to average Column x3:x1500 and leave out the cells with the negative numbers? Thanks, -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
A formula to AVERAGE IF but only average a set number of values | Excel Worksheet Functions | |||
Average Formula | Excel Worksheet Functions | |||
average in formula? | Excel Discussion (Misc queries) | |||
Average Row Formula | Excel Discussion (Misc queries) | |||
how does one convert text to a formula "average(A:A)" to =average( | Excel Worksheet Functions |