AVG COLLECT GREATER THAN VALUE
I have a formula to calculate the average amount within a sheet. I want to change the formula to only collect and average any amounts that are >£10,000.
=AVG(COLLECT({Archive Sales Amount}, {Archive Sales Stage}, "4 - Closed Won", {Archive Sales Level 1}, "1"))
Thinking I may need IF and @cell but it keeps giving me #UNPARSEABLE.
Best Answer
-
Hi,
You can modify your formula to include a condition for amounts greater than £10,000 like this:
=AVG(COLLECT({Archive Sales Amount}, {Archive Sales Stage}, "4 - Closed Won", {Archive Sales Level 1}, "1", {Archive Sales Amount}, ">10000"))This will average only the amounts that meet your criteria and are greater than £10,000.
Hope this will help!
Answers
-
Hi,
You can modify your formula to include a condition for amounts greater than £10,000 like this:
=AVG(COLLECT({Archive Sales Amount}, {Archive Sales Stage}, "4 - Closed Won", {Archive Sales Level 1}, "1", {Archive Sales Amount}, ">10000"))This will average only the amounts that meet your criteria and are greater than £10,000.
Hope this will help! -
Fabulous, that worked great! Thank you @Leela Lodhi
-
@Leela Lodhi To build onto this formula, I have another one that needs to AVG only those in the {Archive Sales Conversion} column where the {Archive Sales Amount} is greater than £10,000:
=AVG(COLLECT({Archive Sales Conversion}, {Archive Sales Stage}, "4 - Closed Won", {Archive Sales Level 1}, "1"))
-
Hi @Michelle Maas,
You can try the following formula to achieve your requirement:
=AVG(COLLECT({Archive Sales Conversion}, {Archive Sales Stage}, "4 - Closed Won", {Archive Sales Level 1}, "1", {Archive Sales Amount}, ">=10000"))Let me know if you need further assistance!
-
Fantastic, that worked great. Thanks for your help, @Leela Lodhi
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!