Forum Discussion
BlancaAnderson
7 years agoQrew Assistant Captain
That is correct, I want to count each letter as +1 only. If NONE is selected then it should say 0
I tried this:
If([Tubs Needed]="NONE",0,Length([Tubs Needed]))
and received this error on the = sign
The operator '=' can't be applied to on types textlists text
I am using a Formula Text field.
I tried this:
If([Tubs Needed]="NONE",0,Length([Tubs Needed]))
and received this error on the = sign
The operator '=' can't be applied to on types textlists text
I am using a Formula Text field.
- JustinTorrence7 years agoQrew CadetInstead of [Tubs Needed]="NONE", try this:
Contains([Tubs Needed], "NONE")