Forum Discussion
Tasks
- May 02, 2023
Does this work?
=IFS(ISNUMBER(MATCH("off", B2:G2, 0)), "Off", COUNTIF(B2:G2, "<>")=0, IF(A2<TODAY(), "Delay in Task Monitoring", "Not Completed"), COUNTIF(B2:G2, "=")>0, IF(A2<TODAY(), "Delay in Task Monitoring", IF(A2=TODAY(), "In Progress", "Not Yet Due")), TRUE, "Completed")
but an additional idea occurred to me, which I know would complicate the equation a lot, but would be more subtle. I want to link the formula with today's date or a certain number of days, because if the task is "in progress" or "not completed", but the next day comes and the task is still in progress or not completed, another phrase appears, which is "delayed in task monitoring"
forgive me for this request, which I think will complicate the equation, but I think it will make the tasks monitored with a lot of accuracy, also because i want to monitor tasks on a daily basis
thank you very much again.
Could you please illustrate on the sample how it is structured, where are dates and where is other information, which part is to check if to filled or not, etc.
- SaudMay 01, 2023Brass Contributor
SergeiBaklan I apologize, here you find the correct note
- HansVogelaarMay 02, 2023MVP
Try this formula:
=IFS(ISNUMBER(MATCH("off", B2:E2, 0)), "Off", COUNTIF(B2:E2, "<>")=0, IF(A2<TODAY(), "Delay in Task Monitoring", "Not Completed"), COUNTIF(B2:E2, "=")>0, IF(A2<TODAY(), "Delay in Task Monitoring", "In Progress"), TRUE, "Completed")
- SaudMay 02, 2023Brass Contributor
Thank you, the formula works great. There are simple notes. I attached illustrative a photo.
again, I thank you for your time
- SaudMay 01, 2023Brass Contributor