Duration countdown (single input)

mharchitect

New Member
Joined
Mar 18, 2019
Messages
11

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
This is the original question from the cross-posted thread and subsequent clarifications
one excel spreadsheet was designed as a follow-up list of employees' tasks. It's required to input one value only (planned duration) in a cloumn. The client needs this list to be automaticallly updated everyday by showing the remaining duration in a new column as follows:

Task planned duration remaining duration
report 60 59

in the given example, it is supposed that the planned duration (60) was entered yesterday and the remaining duration is shown today (59).

the problem is that they need to enter the planned duration only without entering a date (target or initial) in another column.

i was thinking if a code can generate a value for the initial date once a duration is entered and this value is not changed so a hidden formula can then calculate the remaining days each day the file is opened
 
Upvote 0
Q1 Is each "Task" unique?
Q2 Is the user only inserting "Planned Duration" ? (ie the "Task " is already in the worksheet)

You say you want formula and target date hidden
Perhaps use a HIDDEN column to contain "Target Date"

1. USER sheet - user adds duration in column B
2. Worksheet_Change event updates
(a) HIDDEN column with "Target Date" for that "Task" [ = "Current System Date" + "Planned Duration" ]
(b) Column C "Remaining Duration" [ = "Planned Duration" ]
3. Workbook_Open event updates all "Remaining Duration" values
 
Upvote 0
Q1 answer: Yes
Q2 answer: the user will insert a new task and its planned duration in a new row as per the attachment example (Column C is manually calculated in this sheet / after 2 days from the 1st input of planned duration: assumed entered in the same day).

TaskPlanned Duration (days)
Remaining Duration (days)

<tbody>
</tbody>
Reporting

<tbody>
</tbody>
6058
Drawing

<tbody>
</tbody>
4543
Issuing an RFP

<tbody>
</tbody>
3028

<tbody>
</tbody>
 
Upvote 0
Amend this to suit your own needs
- tasks are in sheet with name NameOfSheet
- headers are in Row1
- column A contains tasks
- column B contains planned duration
- column C contains remaining duration (generated by VBA)
- column D contains target date (generated by VBA)

In ThisWorkbook module
Code:
Private Sub Workbook_Open()
    Call UpdateValues
End Sub

In Standard Module
Code:
Sub UpdateValues()
    Dim Ws As Worksheet, Cel As Range, Rng As Range
    Set Ws = Sheets("[I][COLOR=#ff0000]NameOfSheet[/COLOR][/I]")
    Set Rng = Ws.Range("A2", Ws.Range("A" & Rows.Count).End(xlUp))
    For Each Cel In Rng
        If Cel.Offset(, 3) >= Date Then
            Cel.Offset(, 2).Value = Cel.Offset(, 3) - Date
        Else
            Cel.Offset(, 2).Value = "overdue"
        End If
    Next
End Sub

In SHEET module
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Row = 1 Then Exit Sub
    If Not Intersect(Target, Range("B:B")) Is Nothing Then
        Target.Offset(, 1) = Target
        Target.Offset(, 2).Value = Date + Target
        Target.Offset(, 2).NumberFormat = "dd/mm/yyyy"
    End If
End Sub
 
Upvote 0
Above VBA ignores this , but you need to consider what should happen if user amends planned duration when workbook is opened on any day AFTER original input - target date is recalculated from current date and would enable user to keep moving date forward
You may want start date to be locked based on original input date!
 
Last edited:
Upvote 0
I believe you have pointed to the exact point above.
The tried code is returning the remaining duration the same after the machine date is augmented!
No solution till now.
 
Upvote 0
Is it possible to design a code that returns the entry date once a duration is entered? That would solve the issue.
 
Upvote 0
Perhaps use "current date" stamp instead of calculating the "end" date
(Date is the VBA function equivalent of =TODAY() in Excel)

To date stamp the "current date" in Worksheet_Change, use this method
Code:
Target.Offset( , 2) = Date

To prevent the value being overwritten if date stamp already present
Code:
If Target.Offset(, 2) = "" Then
   Target.Offset(, 2).Value = Date
     etc

Remaining days calculated like this: Date Stamp + Planned Duration - Current Date
Code:
Target.Offset( , 1) = Target.Offset(, 2).Value + Target.Value - Date

You would need to amend both Worksheet_Change and UpdateValues to reflect these changes
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,620
Messages
6,120,559
Members
448,970
Latest member
kennimack

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top