Count the number of requests submited
I have a tracker that that is used to capture Recording Requests. there is a column that has Number of recording required and that could be 1 - 3 that can be selected from a drop down. So if a user selects say 2 recordings are required. I would like to have a total column that shows how many recordings are being requested right away.
Formula I tried was :
=COUNTIF([Number of Voice Recordings Req'd]@row, "1"), AND([Number of Voice Recordings Req'd]@row, "2")
I am sure there is a better way to get the total number requested?
thank you
Best Answer
-
My suggestion would be to use a helper column that converts the selection into a numerical value.
=VALUE([Number Selection Column Name]@row)
Then you can just
=SUM([Helper Column]:[Helper Column])
Answers
-
My suggestion would be to use a helper column that converts the selection into a numerical value.
=VALUE([Number Selection Column Name]@row)
Then you can just
=SUM([Helper Column]:[Helper Column])
-
Thank you that worked perfectly.
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 437 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!