Roster update with all values inbetween MIN and MAX dates.

troy001100

New Member
Joined
Jan 21, 2019
Messages
4
Hi.

Warning *** learner below ***

I am trying to update our team roster so that we can update multiple days of leave.

Currently it is working with 1 record at a time.

I have modify it by putting in another field so I can populate MIN and MAX date. I was hoping it would action all days from the MIN to MAX but it just actions the two dates populated.

So I am hoping someone can look at my code below and help me in the right direction.

Thank you


'''
VBA Code:
Private Sub cbbAdd_Click()

Dim LeaveDateMin As Date
LeaveDateMin = txtLeaveDate.Text
Dim LeaveDateMax As Date
LeaveDateMax = txtLeaveDateMax.Text

Dim FirstName As String
FirstName = FirstNameCombo.Text
Dim LeaveType As String
LeaveType = LeaveTypeCombo.Text

Dim wsh As Worksheet
Set wsh = ThisWorkbook.Worksheets("Leave")

Set tbl = wsh.ListObjects("tblEmployees")

Dim lRow As ListRow
Set lRow = tbl.ListRows.Add

With lRow
.Range(1) = LeaveDateMin
.Range(2) = FirstName
.Range(3) = LeaveType
.Range(5) = LeaveDateMax
.Range(6) = FirstName
.Range(7) = LeaveType


End With
End Sub
 
Last edited by a moderator:

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.

Forum statistics

Threads
1,214,912
Messages
6,122,204
Members
449,072
Latest member
DW Draft

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