VBA Add duration to a Start Date to populate the End Date

hotseetotsee

New Member
Joined
Dec 20, 2016
Messages
7
I am trying to populate an End Date for my table based on the Start Date and the Duration stated by the user.
My table are as shown as below:

TaskStart DateDuration
(day(s))
End Date
15/12/20165
27/12/20167

<tbody>
</tbody>

I have tried to run a VBA code as follows but it returned as Run-Time Error '1004': Application defined or object-defined error

Code:
Sub PlannedEndDate()

Dim userInputDate As Date
Dim duration As Double
Dim endDate As Date


userInputDate = Range("C6" & Rows.Count).End(xlUp).Row
duration = Range("D6" & Rows.Count).End(xlUp).Row
endDate = Range("E6" & Rows.Count).End(xlUp).Row


        If duration = "" Then
            endDate = DateAdd("d", duration, userInputDate)
        Else
            endDate = userInputDate
        End If


End Sub

I am new to VBA and I really appreciate if you could help me with this. Thanks.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hi,

You are requesting rownumers to be put in userInputData, duration and endDate, since each of the filling statements ends in ".row".

Suppose your example table starts at A1.
If you want to modify task 2 (row 3)
Code:
    MyRow = 3
    userInputDate = Cells(MyRow, "B").Value
    duration = Cells(MyRow, "C").Value
    If Cells(MyRow, "D").Value <> "" Then
        endDate = DateAdd("d", duration, userInputDate)
        'Put it back on the sheet
        Cells(MyRow, "D").Value = endDate
    End If

You can also put it in a loop
Code:
Sub PlannedEndDate()

    Dim userInputDate As Date
    Dim duration As Double
    Dim endDate As Date
    
    Dim MyRow As Long
    
    'Start at row 2
    MyRow = 2
    'Loop untill column A is empty (no task)
    While Cells(MyRow, "A").Value <> ""
        'Only if not yet filled in.
        If Cells(MyRow, "D").Value = "" Then
            'Fetch info
            userInputDate = Cells(MyRow, "B").Value
            duration = Cells(MyRow, "C").Value
            endDate = DateAdd("d", duration, userInputDate)
            'Put it back on the sheet
            Cells(MyRow, "D").Value = endDate
        End If
        MyRow = MyRow + 1
    Wend
        
End Sub

Does this help you?
 
Upvote 0
Hi,

You are requesting rownumers to be put in userInputData, duration and endDate, since each of the filling statements ends in ".row".

Suppose your example table starts at A1.
If you want to modify task 2 (row 3)
Code:
    MyRow = 3
    userInputDate = Cells(MyRow, "B").Value
    duration = Cells(MyRow, "C").Value
    If Cells(MyRow, "D").Value <> "" Then
        endDate = DateAdd("d", duration, userInputDate)
        'Put it back on the sheet
        Cells(MyRow, "D").Value = endDate
    End If

You can also put it in a loop
Code:
Sub PlannedEndDate()

    Dim userInputDate As Date
    Dim duration As Double
    Dim endDate As Date
    
    Dim MyRow As Long
    
    'Start at row 2
    MyRow = 2
    'Loop untill column A is empty (no task)
    While Cells(MyRow, "A").Value <> ""
        'Only if not yet filled in.
        If Cells(MyRow, "D").Value = "" Then
            'Fetch info
            userInputDate = Cells(MyRow, "B").Value
            duration = Cells(MyRow, "C").Value
            endDate = DateAdd("d", duration, userInputDate)
            'Put it back on the sheet
            Cells(MyRow, "D").Value = endDate
        End If
        MyRow = MyRow + 1
    Wend
        
End Sub

Does this help you?

Yes it does!

But how do I make it to auto-populate the end date without the process being initiated by me running the sub?
 
Upvote 0
You can try calling this sub on the worksheet's change event.
Whenever the sheet changes it should fire this sub.

Please wrap the call with 'Application.EnableEvents = False' and 'Application.EnableEvents = True', otherwise the changes from this code will also start firing this code and leading to a crash due to a stack overflow.
 
Upvote 0
You can try calling this sub on the worksheet's change event.
Whenever the sheet changes it should fire this sub.

Please wrap the call with 'Application.EnableEvents = False' and 'Application.EnableEvents = True', otherwise the changes from this code will also start firing this code and leading to a crash due to a stack overflow.

I already did what you stated above, there's no error with my code but when I insert some data into the cell, the planned end date did not generated like it did before when the sub was ran manually. Here I put together the altered code of the sub and worksheet_change event.

Sub PlannedEndDate:
Code:
Sub PlannedEndDate()

    Dim userInputDate As Date
    Dim duration As Integer
    Dim endDate As Date


    Dim MyRow As Long


    'Start at row 6
    MyRow = 6
    'Loop untill column A is empty (no task)
    While Cells(MyRow, "A").Value <> ""
        'Only if not yet filled in.
        If Cells(MyRow, "E").Value = "" Then
            'Fetch info
            userInputDate = Cells(MyRow, "C").Value
            duration = Cells(MyRow, "D").Value
            endDate = DateAdd("d", duration, userInputDate)
            'Put it back on the sheet
            Cells(MyRow, "E").Value = endDate
        End If
        MyRow = MyRow + 1
    Wend


End Sub

Worksheet_Change:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Application.EnableEvents = False


    'If Not Application.Intersect(Range("$D$6"), Range(Target.Address)) Is Nothing Then
    If Target.Address = "$E$6" Then
        Call PlannedEndDate
    End If
    
Application.EnableEvents = True


End Sub

For the Worksheet_Change code, I tried to run by "If Not Application.Intersect.." method, also not succeed to auto-generate the planned end date.

I am very sorry if my code seems strange, I am new to this.
 
Upvote 0
Hi,

I would remove the IF-END IF construction, just call PlannedEndDate unconditionally.
It is a bit extra overhead, but the target cell changed is not just an D- or E-cell.
You can limit it to work only when duration is changed by using 'IF Left(Target.Address,2) = "$D" then ...

Do you get an error, or was it that the sub never was called at all do to the IF?
It might be causing a premature error if you fill the cells from A to D, because the change in A results into end date calculation using a not yet filled in D cell.
Just check if things do work if column A is filled in last.
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

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