I am trying to average the sum across multiple columns. Each column is a single select dropdown that will allow the user to choose from the following options:
⦸ (Not applicable)
◷ (in progress)
✓ (Complete)
I want to assign values to these symbols.
⦸ = 1
◷ = 0.5
✓ = 1
I have only been able to get the following formula to work:
=AVG(COUNTIF([Column 1]@row = "✓", "1"), (COUNTIF([Column 2]@row = "✓", "1")), (COUNTIF([Column 3]@row = "✓", "1")))
I want to incorporate the other status options into the equation, but I have gotten an error code for everything I try. How would I go about doing this?