Skip to main content

Formula: add number of keywords


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

4 replies

Forum|alt.badge.img+17

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


  • Author
  • New Participant
  • 4 replies
  • January 30, 2019

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


Forum|alt.badge.img+18
hayley_coneill wrote:

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)

  • Author
  • New Participant
  • 4 replies
  • January 31, 2019

@ Jeremy_Oglesby
That worked! Looks like when I tried to do something similar my formatting was wrong. Thank you!


Reply