Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
Sign in to join the conversation:
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.
Hi,
How do you decide if it's late?
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
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?
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!
Yes it did! Thank you so much!
Excellent!
Happy to help!
Hi all, reaching out to see if of you have ideas; I'm hoping this makes sense: I'm having some trouble getting my formulas to pull data in correctly. I currently have a sheet (primary data) where I have data in rows where each row is a single project, with columns identifying persons, $ values, unique project identifier,…
Hello, I have a workflow where, when a team member checks a checkbox, Smartsheet automatically sends an email to themselves containing merge fields that are used as a customer email draft. The challenge is that this activity typically happens on a deadline day, and a team member may need to generate 30 or more of these…
I have a sheet with 5000 rows and 30 columns. with 4 columns of them are formular columns. How can i reach this limit for 25000000 formular cells reference? How can i enlarge this limit? I need those formular to link some data from another sheet as there is also Max cells limit for one sheet. How can I join those data…