I have 3 columns, column1 and column2 are Date type, column3 is choise. Now I need create list validation like this:
- column2 can be empty or not older than column1
and
- when column2 is not empty than column3 cannot be empty and conversely
I created this, but it doesn't work:(
=AND(OR(ISEMPTY([COLUMN2]);([COLUMN2]>=[COLUMN1]));AND([COLUMN2]<>"";(NOT(ISBLANK([COLUMN3])))))