Jan 30, 2019 01:26 PM
I want a formula to add up the number of times a status is set to “Done” in multiple columns. Is this possible?
Jan 30, 2019 02:23 PM
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
Jan 30, 2019 02:29 PM
To be a little more specific, I need a numerical value equal to the number of “done” status there are in a row.
Jan 30, 2019 02:36 PM
0 +
IF(Model = "Done", 1, 0) +
IF(Texture = "Done", 1, 0) +
IF(Animation = "Done", 1, 0)
Jan 30, 2019 04:04 PM
@ Jeremy_Oglesby
That worked! Looks like when I tried to do something similar my formatting was wrong. Thank you!