How to get sum of number of events for the client Delta
Formula I tried:
=SUM(Client:Client = "Delta", Events:Events)
Then I also want to be able to count the number of events per fleet:
"B757/767"
Answers
-
@Louis.Smith You will need a SUMIFS statement to get the total number of events.
=SUMIFS(Events:Events,Client:Client,"Delta")
To get the number of events by fleet
=SUMIFS(Events:Events,Fleet:Fleet,"B757/767")
1 Step further to get B757/767 by client would be:
=SUMIFS(Events:Events,Fleet:Fleet,"B757/767,Client:Client,"Delta")
-
How would I calculate avg, I tried the below but it didn't give me the correct value:
=AVG(Events:Events, Fleet:Fleet, "M88", Client:Client, "Usa Jet")
-
@Louis.Smith You will need an AVG/COLLECT combo. The syntax will be the same as your SUMIFS but you would use AVG(COLLECT(..........)) instead.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!