We have two columns,Status(choice) and Date(Date and Time). Now I want to make the Date column mandatory when the Status = Approved.
I'm currently using this calculated values
=IF(AND([Status]="Approved",ISBLANK([Date])),"Not OK","OK")
The validation is working fine, but when I fill the Date column, it still says the Date column is not filled.
Any suggestions?