Hi everybody,
if I can ask for help with formulas in IF statements
I have developed Glide app with Airtable, works really good.
I have a table WorkOrders, and among other columns, I have:
"Start time", "Start kilometers", "End Time", "End kilometers", "Total km", "Total time", "Status".
This formula is in column "Status", works good:
IF(OR({NameSurname}="",{Startkm}=""),"CREATED",IF({Endkm}="","IN PROCESS",IF({Endkm}>{Startkm},"COMPLETED")))
How can I add another Status, Canceled?
Button CANCEL in Glide updates the fields: Startkm and Endkm to 0 (zero), StartTime and EndTime to CurrentTime (same data in StartTime and EndTime)
Can you help me with the formula?
Thank you very much