I have a SharePoint list that has the following columns:
I'm having a hard time making this. I want to make the Status column a calculated value dependent on departure and return. I want to show if it "incoming", "on process", or "Finished". I already got this code but I don't know where to set the other result values.
=IF(iserror(=DATEDIF(TODAY(),Departure,"d")), "Finished", =DATEDIF(TODAY(),Departure,"d"))
