Sign in to join the conversation:
Hello!
I am trying to make a symbol formula that will become "1" (red flag) IF the Start date is in the past, AND if a dropdown list DONT show "Done".
Anyone that has this formula or knows how to write one?
Kind Regards//
Hugo Martinwall
OR
I would need a formula that makes a flag turn red IF two other symbol columns is "1"
Hi Hugo,
Try this.
=IF(AND([Symbol1]@row = 1; [Symbol2]@row = 1); 1)
Hope that helps!
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Try this for the first question.
=IF(AND(NOT(Status@row = "Done"); Date@row < TODAY()); 1; 0)
Did it work?
Andrée
Hi!
Thank you!
That formula works!
But I just noticed that I need it to work based on 5 symbols!
I cant get that to work with the same structure. Do I need more "AND" ?
This is exactly the structure that I am looking for!
My status column is a dropdown list with several choices.
Is it possible for the formula to also become "0" (not red) if 3 other statuses is in the status column?
Then I have the formula that would make my sheet sooo much better!
Happy to help!
No, you don't need more AND.
=IF(AND([Symbol1]@row = 1; [Symbol2]@row = 1; [Symbol3]@row = 1; [Symbol4]@row = 1; [Symbol5]@row = 1); 1)
Probably, can you describe what you need in more detail?
Ok!
So each row would need a flag that becomes red IF the start date is in the past AND status is not "done" OR "waiting for x", "Waiting for y" and "waiting for z"
Is this possible?
Try something like this.
=IF(AND(AND(Status@row <> "Done"; Status@row <> "Waiting for x"; Status@row <> "Waiting for y"; Status@row <> "Waiting for z"); TODAY() > [Start Date]@row); 1; 0)
The same version but with the below changes for your and others convenience.
=IF(AND(AND(Status@row <> "Done", Status@row <> "Waiting for x", Status@row <> "Waiting for y", Status@row <> "Waiting for z"), TODAY() > [Start Date]@row), 1, 0)
I need a column formula that can add sequential, unique IDs to data like this coming in from a form: Task Type Task ID Manual M001 Automated Manual M002 Manual M003 Manual M004 Automated Manual M005 Task IDs that aren’t the manual type need sequential numbering within their type (i.e. A001, A002, etc). Here’s the kicker:…
I'm trying to display a sum of the column Total Funds Available when Status = Apps Open, and Value Score = 5. Here is the formula I have: =SUMIFS([Total Funds Available]:[Total Funds Available], Status:Status, ="Apps Open", [Value Score]:[Value Score], ="5") There are rows that meet these conditions and should display a…
Hi everyone. We have an upcoming project is very short, but very critical, and requires that we track not only the start and end dates, but also the start and end times. Currently our team has added two columns, start time & end time, and they would like to add a duration column that can track the planned duration in…