If two conditions are met, one being a check box, then add a certain amount of days to a date
I have a formula that I've been working on for hours but my formula building skills are not awesome. Maybe someone with wizardry skills can help me out?
I have a sheet that contains these four columns below.
The "Estimate complete date" is populated with formula below (This is a truncated version of the formula, there are 7 different workflows with 7 different days to add)
=IF([Group Workflow]@row = "Standard ", ([start date]@row + 28), IF([Group Workflow]@row = "Reverification", ([start date]@row + 1)
The new ask is that if the Laggard box is checked, the days added to the estimate complete date should double. I'm attempting to build a formula that says: IF the Laggard = "1" AND Group A workflow = "Standard", add 56 days to the start date, and so on. The formula also needs to say IF the Laggard = "0" AND Group A workflow = "Standard", add 28 days to the start date.
I started with start one workflow to try to get the laggard condition to work but I'm getting a #INCORRECT ARGUMENT SET error. How do I fix this and then add on for the next workflow?
=IF(AND(Laggard@row = "1", [Group Workflow]@row = "Standard ", ([start date]@row + 56)))
Alternatively, I've thought of using a look up table with the workflow column and a column for laggard days and non-laggard days. Is it possible to say if the box is checked Index match one column and if the box is not checked index match another column?
Thank you!
Answers
-
Hi @Alison C
I hope you're well and safe!
Try something like this.
= IF([Start Date]@row <> "", IF(AND([Group Workflow]@row = "Standard", Laggard@row = 1), [Start Date]@row + 56, IF([Group Workflow]@row = "Standard", [Start Date]@row + 28)))
Did that work/help?
I hope that helps!
Be safe and have a fantastic week!
Best,
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
✅Did my post(s) help or answer your question or solve your problem? Please support the Community by marking it Insightful/Vote Up or/and as the accepted answer. It will make it easier for others to find a solution or help to answer!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:[email protected] | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
It works! Thank you so, so much.
-
Excellent!
You're more than welcome!
✅Remember! Did my post(s) help or answer your question or solve your problem? Please support the Community by marking it Insightful/Vote Up or/and as the accepted answer. It will make it easier for others to find a solution or help to answer!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:[email protected] | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
Help Article Resources
Categories
Check out the Formula Handbook template!