OR function
OR(condition_1, condition_2, ...)
The OR function will return true if either one of the conditions are true, and false otherwise.
It's mostly used inside an IF or an IFS function.
OR(@Quantity = 100, @Quantity > 200)
Will be true when the Quantity is either 100 or more than 200.