Hello! I want a boolean column to be set to true automatically whenever two other columns of that table are empty. Is that possible?
Yes. Use an IF column and set it up like this:
If 'Column1' is not empty Then false
ElseIf 'Column2' is not empty Then false
Else true
It worked! Thanks Jeff!