1vote

Counting Stars?

I have a database of applicants and three views that allow reviewers to rate them from ⭐ to ⭐⭐⭐⭐⭐. I want to create a formula field that captures their average rating. I can use .length() but I'm wondering if there are other approaches that might work.

Not everyone has rated every applicant so 0 stars doesn't mean that the applicant is a zero, just that the reviewer hasn't gotten to them yet. I'm also not sure how to account for that.

1 Answer

0vote

polle Points102130

A simple if 0 = No reviews yet in your Notion formula makes the trick.

0vote

amandabee commented ago

Here's what I'm getting:

Σ Reviewer 1 Reviewer 2 Reviewer 3 Goal
2.3 ⭐⭐⭐ ⭐⭐⭐⭐ mean(3,4)
0.7 mean(1,1)
1.3 ⭐⭐⭐ mean(1,3)
3 ⭐⭐⭐⭐⭐ ⭐⭐⭐⭐ mean(5,4)

I'd like to find the mean of scores that have been given, which would be 3.5 for row 1 mean(3,4) instead of 2.3 which is mean(3, 0, 4).

Please log in or register to answer this question.

...

Welcome to Notion Answers, where you can ask questions and receive answers from other members of the community.

Please share to grow the Notion Community!

Connect