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.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!