Best Formula
I have a construction schedule with start and finish dates. I want the check boxes for the at risk column to automatically check off if the project is late starting or late finishing. Can anyone help me craft the appropriate formula for this? Is there a good formula for this? I was thinking it would be an if then formula but I cannot for the life of me get it to work.
Comments
-
Hi,
How do you decide if it's late?
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
There are set start and finish dates. If the project hasn't started by the scheduled date then it is late starting. For example, if the building inspection hasn't started by 8/30/2019 and is due by 9/10/2019 then the inspection is late starting and puts the period at risk. We get these dates from Purchase Agreements.
-
Thanks!
What indicates that it's started?
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
The percent complete column. Whoever is in charge of that part of the project updates that column as the project proceeds.
-
Ok.
Try something like this.
=IF(OR(ISBLANK(Start@row); ISBLANK(Finish@row); [% Complete]@row = 1); 0; IF(AND(Start@row < TODAY(); [% Complete]@row = 0); 1; IF(AND(Finish@row < TODAY(); [% Complete]@row < 1); 1)))
The same version but with the below changes for your and others convenience.
=IF(OR(ISBLANK(Start@row), ISBLANK(Finish@row), [% Complete]@row = 1), 0, IF(AND(Start@row < TODAY(), [% Complete]@row = 0), 1, IF(AND(Finish@row < TODAY(), [% Complete]@row < 1), 1)))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Hope that helps!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
Yes it did! Thank you so much!
-
Excellent!
Happy to help!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | 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
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!