I am using a Microsoft List for employees to request their leave (annual / sick leave).
I have a column called 'Leave Start Date' where they enter the start date of their leave. It currently has a Validation formula so that they can't apply for leave that's less than 10 days away:
=IF([Leave Start Date]<DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())+10),FALSE,TRUE)
We have this rule for Annual Leave only which is what causes my problem. For Personal Leave I need them to be able to select any date and even backdate.
I have a Choice Column where they select their leave type from the choices.
Is it possible to make the 'Leave Start Date' Column rule only apply if they select Annual Leave for vacation purposes?
Any ideas are appreciated.