Hi to all,
I need to add a % Planned to my plan. I used a formula but it didn't work.
Attached you have a screenshot of my plan with the formula and the dates columns.
Thanks for your advice!!
Adelina
Hi Adelena. The primary issue I see with your formula is how you are referencing the column names in it. And that you are referencing any row numbers. When referencing a column name with spaces always wrap your column name in brackets like this... [End Date]
You also need to either reference a specific row number after the column name or use smartsheets @row trick to reference the current row. It should looks like this... [End Date]3 --- which will reference row 3. OR [End Date]@row to reference the current row you are in.
Regarding your formula it should look something more like this...
=Round(IF(Today() < [Start Date]@row, 0, IF(...
=IF([Due Date]@row > TODAY(), IF(AND(Status@row = "In Progress", Status@row = "New", Status@row = "Not Started"), "Yes", "No"))) The goal is to flag items for escalation based on the due date and status. If the due date is in the past and the status of the risk or decision is in progress, not started, or new then I need to…
Ultimately, I need a good way to track if we are completing tasks on time based on our original estimates because we have users that estimate a task will take 5 days and when it takes 15 they just change the dates, and the project status still looks green, when is reality it is behind. I would like to have target start/end…
I feel like this should be super simple but I am just not getting it right. Based on Frequency: Daily, weekly, monthly I want to change the next due date This will be calulated from Created column and +1, 7, 30 etc added. It works single instance =IF(Frequency@row = "Daily", Created@row + 1) but as soon as I try to write…