I want to populate the % Percent field with 100 when the Actual End Date is entered. I tried this formula but I get an error.
=IF([Actual End Date]@row > "0", "100", "0")
Any suggestions?
Hi Dee,
Try this.
=IF(NOT(ISBLANK([Actual End Date]@row)), 1)
Hope that helps!
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
To add because I can't edit: Have a fantastic week!
Thank you and it works when I turn off % Complete in Project Settings. But then it wont calculate overall project % complete. I am stuck.
Happy to help!
Unfortunately, you can't have both.
You'd have to disable the automatic % Complete feature and add manual formulas instead.
Would that work?
Another option could be a third-party integration like Zapier or the Smartsheet API. Is that an option?
I am getting blocked with edits again as well... -_-
Yes, i get sometimes now as well.
It's back!
HAHAHAHAHAHAHAHAHA!!!!!!!!!!!
I want to push the latest status log sheet entry to the dashboard. I have added working columns for the last date, recent value (0 or 1) and recent status (text field). The recent columns are blank except for the most recent data rows (that part of the sheet is working). I have a project metric sheet template across topics…
Hi - I am trying to figure out how to create a SUM of the Total Project Time aligned to each PM for all of their projects. On my master sheet I have the Resource Type, Resource Name, and a Helper Column for Time. The Helper Time is an estimated allotted time based on the timeframe of the project. Example: <3 months = 25…
I am looking to count how many letters we have issued within each month, this is by going by the modified date, these are the formulas i have tried as i want to start this from August: =COUNTIFS(Modified:Modified, MONTH(@cell ) = 8, Modified:Modified, YEAR(@cell ) = 2025) However, it comes up with an error. Any ideas…