Adding the value of cells >than 4.5

  • Thread starter Thread starter Mellybean
  • Start date Start date
M

Mellybean

I am working with a sheet containing numbers in cells between 1-6, I only
need the numbers 4.5 or greater, and average those numbers. what is the
formula for it to determine say cells A1:A30 only the ones >4.5 + the average
 
Try one of these:

=SUMIF(A1:A30,">=4.5")/COUNTIF(A1:A30,">=4.5")

Or this array formula** :

=AVERAGE(IF(A1:A30>=4.5,A1:A30))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER)
 
Thank-you very much!!!!

T. Valko said:
Try one of these:

=SUMIF(A1:A30,">=4.5")/COUNTIF(A1:A30,">=4.5")

Or this array formula** :

=AVERAGE(IF(A1:A30>=4.5,A1:A30))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

>4.5 3
Excel Need Countifs Formula Help 0
Average Function but exclude info 4
Value Error 3
Text to number value 1
Sum variable range of column entries in offset cell 5
Excel Sumproduct 0
averaging less than values 1

Back
Top