Logically OR is boolean conditions. Returns true
if any of the list conditions are true, and false
if they are all false.
bool? OR(params bool?[] conditions)
OR(COMPARE("Apples","apples", true))
This is combining the COMPARE function, which is asking is "Apples" the same as "apples" when the case is ignored. As this is correct OR returns true
.