Forum Discussion
Saud
May 01, 2023Brass Contributor
Tasks
I want a function for multiple conditions where it says that if a certain number of cells are filled, knowing that there are numbers and text in those cells, if all these cells are filled the phrase ...
- 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")
Saud
May 01, 2023Brass Contributor
HansVogelaar The difference between 'Not completed' and 'in progress' is that in the first phrase no filled in cell in the range of cells is filled, while in seconde phrase in progress a part of the range of cells is filled
SergeiBaklan
May 01, 2023Diamond Contributor
As variant
=IF(
SUM(--(range = "off")),
"Off",
LET(
n, COLUMNS(range),
k, SUM(--ISBLANK(range)),
IF(k = n, "Not completed", IF(k = 0, "Completed", "In progress"))
)
)
- SaudMay 01, 2023Brass ContributorThank you very much. I appreciate your effort.
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.- SergeiBaklanMay 01, 2023Diamond Contributor
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
- SaudMay 01, 2023Brass ContributorAlso, if the tasks are linked to today's date, I think they can also be linked to the date that has not yet arrived, as the phrase "The task has not yet arrived" appears.