I am trying to add validation on multiple dates in SharePoint list.
Example: If end date is added by user the start date shall be mandatory. The start date shall not be greater than end date.
=IF(ISBLANK([End date]),TRUE,[End date]>=[Start date])
This is not working and not making start date mandatory.