Forum Discussion
_anomDiebolt_
Qrew Elite
If you suffix and prefix the multi-select text field and the option string with the three characters " ; " (ie space, semicolon and space) you can absorb the oddball case where one option is a sub-string of another:
In the above I used ToNumber() instead of Mark's If() to convert from text to number.
ToNumber(Contains(" ; " & [field] & " ; ", " ; dog ; "))
ToNumber(Contains(" ; " & [field] & " ; ", " ; cat ; "))
ToNumber(Contains(" ; " & [field] & " ; ", " ; fox ; "))
ToNumber(Contains(" ; " & [field] & " ; ", " ; ox ; "))
In the above I used ToNumber() instead of Mark's If() to convert from text to number.
AdamKeever1
7 years agoQrew Commander
That is very useful. How did you learn about this?