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)
It happened suddenly. It was working last week. I'm using Index Collect to pull a contact as cross sheet reference. But today, I did not see that working well. Usually it has circle beside my name, suddenly it vanishes, and it just contains text. I'm using those other columns to be sent notification, and it doesn't work…
Hi, I am trying to create a sheet from data that is originally held in .csv files. My goal is to make it so that transferring the data to my sheet should be as simple as just copy and paste. My issue is that two of the fields that I need to copy over are reported in scientific notation (1.3E+004) and I am trying to figure…
I searched the community and did not see a formula that calculated Quarter based on a Start and a Finish date while also accounting for cases where the year for the Start and Finish date differ. The formula below handles that. A few notes … It assumes that Finish is always >= Start. The entire formula is wrapped with…