Sign in to join the conversation:
I am trying to get this formula to work correctly. I believe I am close however it is not working correctly.
I have attached a screen shot.
What precisely are you trying to accomplish with the formula? Return a number of days?
I am trying to return days over due from the Completion Date and the Target Date
So you want to know two separate numbers or the combination of the two numbers (either subtraction or addition)?
I would want to know the subtraction of the Target Date from the Completion Date and along with Today's date so we can have an accurate number of days of being overdue
So you are wanting to see the current status of a task that is active, so the difference between today's date and the Target Date where a positive number means you are "ok" but a negative number means you are behind.
And you are also wanting to see the static number for the difference between the Target Date and the Completion Date, where, again, positive is good and negative is bad.
Is that accurate?
That is accurate
The following is how you can accomplish this. It is with two separate formulas in two new Columns that I titled Days Remaining and Ahead/Behind.
Based on your screen shot I am assuming that you are using the =TODAY() to return the current date automatically. With that assumption the following formulas might work.
For Days Remaining: =SUM([Target Date]3 - [Todays Date]3) - This is used to show you the current days remaining or behind on a specified task that is ACTIVE.
For Ahead/Behind: =SUM([Target Date]3 - [Completion Date]3) - This is used to show the static day(s) that a task was complete ahead of, on time or behind the specified Target date.
If I was understanding your request correctly, this will give you the information you are looking to capture.
I attached a screen shot of the Sheet as I created it, matching your original Columns and Rows and adding the two new Columns.
That worked perfect thank you so much
Not a problem. I enjoy passing along what I have learned as I trudge through SmartSheet and it's capabilities.
I need a column formula that can add sequential, unique IDs to data like this coming in from a form: Task Type Task ID Manual M001 Automated Manual M002 Manual M003 Manual M004 Automated Manual M005 Task IDs that aren’t the manual type need sequential numbering within their type (i.e. A001, A002, etc). Here’s the kicker:…
I'm trying to display a sum of the column Total Funds Available when Status = Apps Open, and Value Score = 5. Here is the formula I have: =SUMIFS([Total Funds Available]:[Total Funds Available], Status:Status, ="Apps Open", [Value Score]:[Value Score], ="5") There are rows that meet these conditions and should display a…
Hi everyone. We have an upcoming project is very short, but very critical, and requires that we track not only the start and end dates, but also the start and end times. Currently our team has added two columns, start time & end time, and they would like to add a duration column that can track the planned duration in…