AverageIf Formula

acool

Board Regular
Joined
Feb 10, 2023
Messages
118
Office Version
  1. 365
Platform
  1. Windows
Hi Everyone,
I am currently trying to create an average formula that takes range A:L into consideration. In this formula, I would like to exclude any numbers from my average that do not fall within 60% of the Total Average from June 23-May 24. For example if the average from A2:L2 is 976, I would want to exclude any number from the calculation that is less than 585. I would like only these numbers to be considered in the new adjusted average formula. Any help would be greatly appreciated. Thank You!
1718994377348.png
 

Attachments

  • 1718994252714.png
    1718994252714.png
    30 KB · Views: 4

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Can you post your actual data using the XL2BB add-in. It saves people from having to type it all out.
 
Upvote 0
Could it be this, filled down?

=AVERAGE(FILTER(A2:L2,A2:L2>INT(AVERAGE(A2:L2)*0.6)))
 
Upvote 0
You can also try
Excel Formula:
=AVERAGEIF(A2:L2,">="&60%*AVERAGE(A2:L2))
 
Upvote 0
Solution

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top