Was wondering if anyone had a collection of example formulas they've used in past forms for formatting or validation. Would be great to have this published somewhere if it isn't already.
In particular, I'm trying to get an "or" formula working where it evaluates the value of a control for several different values. I tried:
ControlName != "Value1" || "Value2" || "Value2"
ControlName != "Value1" || ControlName != "Value2" || ControlName != "Value2"


