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
1 Like
It worked! Thanks Jeff!
1 Like
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.