Is there a formula to get the average of star ratings?
I have a column that is only star ratings. I am trying to the get the average rating of the entire column in a sheet summary field. I tried to just do the average formula for the column and got the #DIVIDE BY ZERO error. Is there a formula that can calculate the average without having to create a helper column to translate the ratings? Thank you!
Best Answer
-
Please try this formula.
=(COUNTIF(ratings:ratings, "One") * 1 + COUNTIF(ratings:ratings, "Two") * 2 + COUNTIF(ratings:ratings, "Three") * 1 + COUNTIF(ratings:ratings, "Four") * 4 + COUNTIF(ratings:ratings, "Five") * 5) / COUNTIF(ratings:ratings, ISTEXT(@cell))
😊
Answers
-
Please try this formula.
=(COUNTIF(ratings:ratings, "One") * 1 + COUNTIF(ratings:ratings, "Two") * 2 + COUNTIF(ratings:ratings, "Three") * 1 + COUNTIF(ratings:ratings, "Four") * 4 + COUNTIF(ratings:ratings, "Five") * 5) / COUNTIF(ratings:ratings, ISTEXT(@cell))
😊
-
That worked! Thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 494 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!