I want a formula to add up the number of times a status is set to “Done” in multiple columns. Is this possible?

Page 1 / 1
If you want to know when is complete, you can use IF(AND(Field1, Field2, Field3), 'Complete','Incomplete').
Also check this: Formula to add up items that appear in columns
To be a little more specific, I need a numerical value equal to the number of “done” status there are in a row.

To be a little more specific, I need a numerical value equal to the number of “done” status there are in a row.

0 +
IF(Model = "Done", 1, 0) +
IF(Texture = "Done", 1, 0) +
IF(Animation = "Done", 1, 0)
@ Jeremy_Oglesby
That worked! Looks like when I tried to do something similar my formatting was wrong. Thank you!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
