Hey @Ellen_Edgerton!
Here’s a version of your formula in a corrected syntax using your field names:
(
{Count-Excellent} * 5 +
{Count-Good} * 4 +
{Count-Fair} * 2
) /
ReviewerCount
It produces something like this:
As long as it fits inside of a curly bracket, the spaces or characters in the field names don’t make a difference in regard to formula syntax.
Nerd things… if you’re curious
Your formula works if you remove the -
in your field names.
Airtable sees:
Count-Excellent
as this:
{Count} - {Excellent}
-
is an operator and thus treats Count
and Excellent
as two different fields.
See… Airtable doesn’t require the curly brackets if your field does not contain a space or an operator.
If you were to set your field names to fit the format of CountExcellent
, then it works perfectly!
Here’s your formula written in that syntax:
(
CountExcellent * 5 +
CountGood * 4 +
CountFair * 2
)
/
ReviewerCount
Just some notes. There might be some things I didn’t exactly explain correctly, but generally, that’s how the syntax treats fields.
Let me know if you have any questions!