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'm wondering if anyone has worked out a dynamic formula to return the date of the 'next' Thursday of the month. I have a worksheet where I need to send out a reminder to a contacts in a contact column in the worksheet each Thursday of the current month if a criteria has not been met. When criteria has been met, then…
Hello, I have the formula to check a box for line items with the current month. =IF(AND(YEAR(Date@row ) = YEAR(TODAY()), MONTH(Date@row ) = MONTH(TODAY())), 1, 0) Trying to set up a report for all items with the previous month (i.e. 1 month prior to current). How can I modify to check the box?
Please help, I have a few of these to do. I have a nested IF formula. The first part is an INDEX/MATCH and works as a standalone. The next few are INDEX/COLLECT. These are not working as standalone or in the nested version (Unparsable Error). Any ideas? =IF(CONTAINS(“A/V”, [Vendor Type]@row ), INDEX(COLLECT({Date Secured…