I would like some help on multiple validation on dates - Example below
If I want a user to enter a date in Cell A1 and I want to validate the date based on the following rules:
1. Date Format DD/MM/YYYY
2. You can't enter a future date
3. You can only enter weekdays
4. You can only enter a date in the current month or previous month
I have tried several times but I get an error message when I use validation - formula I used =AND(WEEKDAY(A1)<>1,WEEKDAY(A1)<>7,A1>= DATE(YEAR(A1),MONTH(A1)-1,1),A1< DATE(YEAR(A1),MONTH(A1)+1,1))
Bookmarks