I have a calculated Text column 'Status' in the PATROLS SharePoint list.
=IF(ISBLANK([Out of Service Date/Time]),"In Service","Out of Service")
The current formula, which is working, looks a singular column 'Out of Service Date/Time'. If that value is null, the Status value is "In Service" and if it is not null the Status value is "Out of Service".
I would like the formula to consider two date columns 'In Service Date/Time and 'Out of Service Date/Time'
If both of the aforementioned value are null, then 'Status' is "Scheduled"
If 'In Service Date/Time' is not null, but 'Out of Service Date/Time is null, then 'Status' is "In Service"
If both 'In Service Date/Time' and 'Out of Service Date/Time' are not null, then 'Status' is "Out of Service"
Thank you so much!