I have this formula, and it works (!) for two checkbox fields; it deals with and/or combinations of ticked/unticked states.
IF({First field}=1, IF({Second field}=1, “Do this and that”, BLANK()))
&IF({First field}=0, IF({Second field}=1, “Do this”, BLANK()))
&IF({First field}=1, IF({Second field}=0, “Do that”, BLANK()))
I’ve been reading around here, and thanks to the help of other community members here for getting me this far in answer to other peoples’ queries.
Out of interest, how could it be re-written to perform the same function without using the ‘&’ operator. I’d love to learn more about formula writing and structures.