Sign in to join the conversation:
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've always struggled with calculating total count by Month; i can do it for every else but when you throw in dates, it throws me right off. Essentially what i am trying to do is calculate on another sheet the amount of travel done within the month of March This is the formula i am using, but it comes back with 0…
Hello, I am looking for a fairly complicated formula (I think). I have two sheets: 1) IW POD and 2) Root Bushing Repair Tracker on sheet 2, I have a column named "Actual Execution Hours" In that column, on sheet 2, I need to sum the hours on sheet 1 in column "Total Actual Hours" IF these two columns match on both sheets -…
Hi Community, I have a sheet that contains, among others, columns titled "Priority" and "Contract ID". Multiple rows can have the same Contract ID and the same Priority. Priority values are 1-2-3 and restricted to dropdown list values only. To collect the number of unique Contract IDs that are Priority "1", I have this…