May 01 2023 11:12 AM
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 appears "Completed", and if a number of cells are filled the phrase appears "in progress", and if any of the cells is not filled, ther phrase appears "not completed" also appears here. Another condition is that if there is a certain text, if it is entered by the person concerned, such as "off", the phrase "off" appears in the status of tasks
May 01 2023 12:24 PM
@Hans Vogelaar 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
May 01 2023 12:32 PM
Ah, that's different from
if any of the cells is not filled, ther phrase appears "not completed"
Let's say you want to look at D2:G2.
=IFS(ISNUMBER(MATCH("off", D2:G2, 0)), "Off", COUNTIF(D2:G2, "<>")=0, "Not Completed", COUNTIF(D2:G2, "=")>0, "In Progress", TRUE, "Completed")
This can be filled down.
May 01 2023 01:51 PM
May 01 2023 02:21 PM
May 01 2023 03:37 PM - edited May 01 2023 03:57 PM
May 01 2023 04:54 PM
@Sergei Baklan I apologize, here you find the correct note
May 02 2023 04:17 AM
Thank you, the formula works great. There are simple notes. I attached illustrative a photo.
again, I thank you for your time
May 02 2023 06:13 AM
SolutionDoes 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")
May 02 2023 07:09 AM
yes, There is a simple thing, but it is not important, and which is if today's date and there are an in one of the cells, sum formula, it will be "in progress" not "not completed".
I really thank you for what you did for me, I appreciate your efforts
May 02 2023 08:16 AM
@Hans Vogelaar Try this in Excel your attached before, In the case of the task that is "not completed", add a sum formula in the Total column, the sum will appear as 0 because you have not entered the required numbers yet, the formula will understand that there is a fill in one of the cell, so because it is today's date, the status task will be "in progress".If we can solve it, it will be better, if we can't, that's okay, because the next day, if he doesn't complete the task, it will appear "delay in task monitoring"