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've got the following formula in a Check Box column to check when something is due in the Next 3 weeks. =IFERROR(IF(AND(WEEKNUMBER([Projected Cleaning Date]@row ) = WEEKNUMBER(TODAY()) + 3, YEAR([Projected Cleaning Date]@row ) = YEAR(TODAY())), 1), "") I have them for 2 weeks, 3 weeks, 4 weeks, and 5 weeks. These stopped…
I'm using salesforce connector to pull my team's hours information in real-time. The Salesforce connector sheet contains sheet summaries that I'd like to use a cell reference for a different sheet. I can't seem to find the best way or formula to do this. I don't want to use a dashboard with report widgets because I prefer…
I have two formulas which work well independently, but when I combine them they don't. formula 1: =IF(YEAR([Joined date]@row ) = 2025, JOIN(COLLECT({Membership Survey 2025 - Experience}, {Membership Prioritisation Survey 2025 - Org}, [Organisation name]@row ))) formula 2: =IF(YEAR([Joined date]@row ) < 2025,…