Not sure if this is a bug or a feature idea. Decided to post here since the error message I’m getting suggests it’s working as written.
I’d like to write an OR function that checks multiple fields and returns true if any of them are true. Per the 20 Essential Baserow Functions post, the OR function should be able to evaluate multiple conditions. However, when I try to use OR to check 3 different fields, I get:
Error with formula: 3 arguments were given to the function or, it must instead be given exactly 2 arguments.
For what it’s worth, the specific thing I’m hoping to check is:
if(or(field(‘Break Adj?’)=“Yes”,field(‘Shift Adj?’)=“Yes”,field(‘Meal Adj-A?’)=“Yes”),“Yes”,“No”)
I’m a long-time spreadsheet master that’s still pretty new to databases… thanks in advance for any help!