Forum Discussion
jbisset75
Mar 07, 2022Copper Contributor
How to calculate the average of amounts below a certain amount
Here's my issue. We have a number of gifts that were given to our organization (displayed in a column with one entry per row). I'd like to calculate the average of all those gifts below $500. What...
- Mar 07, 2022
jbisset75 That could something like:
=AVERAGEIF(range,"<500",range)
where "range" refers to the range that you want the average to be calculated on.
Riny_van_Eekelen
Mar 07, 2022Platinum Contributor
jbisset75 That could something like:
=AVERAGEIF(range,"<500",range)
where "range" refers to the range that you want the average to be calculated on.
jbisset75
Mar 07, 2022Copper Contributor
That's it! Thank you.