Forum Discussion
rituraj851
Oct 21, 2022Copper Contributor
Current Status Tracking
Hello Everyone, I am trying to get the status as per below mentioned conditions and dates. Could you suggest on how to get that. If KOC date is on or before today then KOC Sent on time. Once ...
HansVogelaar
Oct 21, 2022MVP
=IFS(KOC_Date<=TODAY(), "KOC Sent on Time", PRE_Date<=TODAY(), "PRE on Time", Scheduling_in_Progress<=TODAY(), "Scheduled on Time", FW_Date<=TODAY(), "FW on Time", Complete_Date<=TODAY(), "Complete on Time", TRUE, "None on Time/Other")
- rituraj851Oct 26, 2022Copper Contributorhans Thanks for the response, however it is not working the logic is not going through the every condition mentioned I guess it stops where it finds the any condition true. What I am trying to build is that the status should change automatically based on the date. As of now the formula shows as only "KOC Sent On Time".
- HansVogelaarOct 26, 2022MVP
The formula does exactly what you asked in the first post, but apparently it is not what you wanted.
In which order should the formula check the conditions?