I need to create a calculated column and need to check the values of othercolumns and increment a counter. For instance, if columnA=1, increment counterby one. If columnB=1, increment counter again. I've looked all over for thesolution and keep getting bad results.
What about creating the calculated column as the sum of the other columns?
I need it to be conditional. Only in the case that columnA is equal to 1 do Iwant to increment the counter. I can get it to work for one column, but I have10 columns that I need to check, and possibly increment the counter depending onthe value. Is this possible?
Well, it would be a heck of a lot easier with a workflow, but let's see.What is the possible value set of Column A (etc)?
Yeah, I realized that after I posted the question! Workflow is the way I did it.
Okay. It's a bit unwieldy, but it'll do the job:=IF(ColA=1,1,0)+IF(ColB=1,1,0)+IF(ColC=1,1,0)+IF(ColD=1,1,0)