Private Sub MarchAdd_Click()
Dim iRow As Long
Dim lRw As Long
Dim lCol As Long
Dim lCol1 As Long
Dim lCol2 As Long
Dim lCol3 As Long
Dim lCol4 As Long
Dim lCol5 As Long
Dim lCol6 As Long
Dim lCol7 As Long
Dim lCol8 As Long
Dim lCol9 As Long
Dim lCol10 As Long
Dim lCol11 As Long
Dim lCol12 As Long
Dim lCol13 As Long
Dim lCol14 As Long
Dim lCol15 As Long
Dim lCol16 As Long
Dim lCol17 As Long
Dim lCol18 As Long
Dim lCol19 As Long
Dim lCol20 As Long
Dim lCol21 As Long
Dim lCol22 As Long
Dim lCol23 As Long
Dim lCol24 As Long
Dim lCol25 As Long
Dim lCol26 As Long
Dim lCol27 As Long
Dim lCol28 As Long
Dim lCol29 As Long
Dim lCol30 As Long
Dim ws As Worksheet
Dim ws1 As Worksheet
Application.ScreenUpdating = False
lRw = Me.NameBox2.ListIndex + 6 '< Listindex starts at 0, day1 is on Row3 so add 4
lCol = Me.Day1.ListIndex + 3
lCol1 = Me.Day2.ListIndex + 3
lCol2 = Me.Day3.ListIndex + 3
lCol3 = Me.Day4.ListIndex + 3
lCol4 = Me.Day5.ListIndex + 3
lCol5 = Me.Day6.ListIndex + 3
lCol6 = Me.Day7.ListIndex + 3
lCol7 = Me.Day8.ListIndex + 3
lCol8 = Me.Day9.ListIndex + 3
lCol9 = Me.Day10.ListIndex + 3
lCol10 = Me.Day11.ListIndex + 3
lCol11 = Me.Day12.ListIndex + 3
lCol12 = Me.Day13.ListIndex + 3
lCol13 = Me.Day14.ListIndex + 3
lCol14 = Me.Day15.ListIndex + 3
lCol15 = Me.Day16.ListIndex + 3
lCol16 = Me.Day17.ListIndex + 3
lCol17 = Me.Day18.ListIndex + 3
lCol18 = Me.Day19.ListIndex + 3
lCol19 = Me.Day20.ListIndex + 3
lCol20 = Me.Day21.ListIndex + 3
lCol21 = Me.Day22.ListIndex + 3
lCol22 = Me.Day23.ListIndex + 3
lCol23 = Me.Day24.ListIndex + 3
lCol24 = Me.Day25.ListIndex + 3
lCol25 = Me.Day26.ListIndex + 3
lCol26 = Me.Day27.ListIndex + 3
lCol27 = Me.Day28.ListIndex + 3
lCol28 = Me.Day29.ListIndex + 3
lCol29 = Me.Day30.ListIndex + 3
lCol30 = Me.Day31.ListIndex + 3
'set selected month
If Me.cboMonths.ListIndex < 0 Then
MsgBox "please select the appropriate Month", vbCritical, "Input require"
Exit Sub
Else: Set ws = Worksheets(Me.cboMonths).Value
End If
With ws
'find first empty row in database
iRow = .Cells(.Rows.Count).End(xlUp).Offset(1, 0).Row
.Cells(lRw, lCol).Value = Left(Trim(Me.Hours1.Value), 10)
.Cells(lRw, lCol1).Value = Left(Trim(Me.Hours2.Value), 10)
.Cells(lRw, lCol2).Value = Left(Trim(Me.Hours3.Value), 10)
.Cells(lRw, lCol3).Value = Left(Trim(Me.Hours4.Value), 10)
.Cells(lRw, lCol4).Value = Left(Trim(Me.Hours5.Value), 10)
.Cells(lRw, lCol5).Value = Left(Trim(Me.Hours6.Value), 10)
.Cells(lRw, lCol6).Value = Left(Trim(Me.Hours7.Value), 10)
.Cells(lRw, lCol7).Value = Left(Trim(Me.Hours8.Value), 10)
.Cells(lRw, lCol8).Value = Left(Trim(Me.Hours9.Value), 10)
.Cells(lRw, lCol9).Value = Left(Trim(Me.Hours10.Value), 10)
.Cells(lRw, lCol10).Value = Left(Trim(Me.Hours11.Value), 10)
.Cells(lRw, lCol11).Value = Left(Trim(Me.Hours12.Value), 10)
.Cells(lRw, lCol12).Value = Left(Trim(Me.Hours13.Value), 10)
.Cells(lRw, lCol13).Value = Left(Trim(Me.Hours14.Value), 10)
.Cells(lRw, lCol14).Value = Left(Trim(Me.Hours15.Value), 10)
.Cells(lRw, lCol15).Value = Left(Trim(Me.Hours16.Value), 10)
.Cells(lRw, lCol16).Value = Left(Trim(Me.Hours17.Value), 10)
.Cells(lRw, lCol17).Value = Left(Trim(Me.Hours18.Value), 10)
.Cells(lRw, lCol18).Value = Left(Trim(Me.Hours19.Value), 10)
.Cells(lRw, lCol19).Value = Left(Trim(Me.Hours20.Value), 10)
.Cells(lRw, lCol20).Value = Left(Trim(Me.Hours21.Value), 10)
.Cells(lRw, lCol21).Value = Left(Trim(Me.Hours22.Value), 10)
.Cells(lRw, lCol22).Value = Left(Trim(Me.Hours23.Value), 10)
.Cells(lRw, lCol23).Value = Left(Trim(Me.Hours24.Value), 10)
.Cells(lRw, lCol24).Value = Left(Trim(Me.Hours25.Value), 10)
.Cells(lRw, lCol25).Value = Left(Trim(Me.Hours26.Value), 10)
.Cells(lRw, lCol26).Value = Left(Trim(Me.Hours27.Value), 10)
.Cells(lRw, lCol27).Value = Left(Trim(Me.Hours28.Value), 10)
.Cells(lRw, lCol28).Value = Left(Trim(Me.Hours29.Value), 10)
.Cells(lRw, lCol29).Value = Left(Trim(Me.Hours30.Value), 10)
.Cells(lRw, lCol30).Value = Left(Trim(Me.Hours31.Value), 10)
'copy the data to the database
.Cells(iRow).Value = Me.Day1.Value
.Cells(iRow).Value = Me.Day2.Value
.Cells(iRow).Value = Me.Day3.Value
.Cells(iRow).Value = Me.Day4.Value
.Cells(iRow).Value = Me.Day5.Value
.Cells(iRow).Value = Me.Day6.Value
.Cells(iRow).Value = Me.Day7.Value
.Cells(iRow).Value = Me.Day8.Value
.Cells(iRow).Value = Me.Day9.Value
.Cells(iRow).Value = Me.Day10.Value
.Cells(iRow).Value = Me.Day11.Value
.Cells(iRow).Value = Me.Day12.Value
.Cells(iRow).Value = Me.Day13.Value
.Cells(iRow).Value = Me.Day14.Value
.Cells(iRow).Value = Me.Day15.Value
.Cells(iRow).Value = Me.Day16.Value
.Cells(iRow).Value = Me.Day17.Value
.Cells(iRow).Value = Me.Day18.Value
.Cells(iRow).Value = Me.Day19.Value
.Cells(iRow).Value = Me.Day20.Value
.Cells(iRow).Value = Me.Day21.Value
.Cells(iRow).Value = Me.Day22.Value
.Cells(iRow).Value = Me.Day23.Value
.Cells(iRow).Value = Me.Day24.Value
.Cells(iRow).Value = Me.Day25.Value
.Cells(iRow).Value = Me.Day26.Value
.Cells(iRow).Value = Me.Day27.Value
.Cells(iRow).Value = Me.Day28.Value
.Cells(iRow).Value = Me.Day29.Value
.Cells(iRow).Value = Me.Day30.Value
.Cells(iRow).Value = Me.Day31.Value
.Cells(iRow).Value = Me.Hours1.Value
.Cells(iRow).Value = Me.Hours2.Value
.Cells(iRow).Value = Me.Hours3.Value
.Cells(iRow).Value = Me.Hours4.Value
.Cells(iRow).Value = Me.Hours5.Value
.Cells(iRow).Value = Me.Hours6.Value
.Cells(iRow).Value = Me.Hours7.Value
.Cells(iRow).Value = Me.Hours8.Value
.Cells(iRow).Value = Me.Hours9.Value
.Cells(iRow).Value = Me.Hours10.Value
.Cells(iRow).Value = Me.Hours11.Value
.Cells(iRow).Value = Me.Hours12.Value
.Cells(iRow).Value = Me.Hours13.Value
.Cells(iRow).Value = Me.Hours14.Value
.Cells(iRow).Value = Me.Hours15.Value
.Cells(iRow).Value = Me.Hours16.Value
.Cells(iRow).Value = Me.Hours17.Value
.Cells(iRow).Value = Me.Hours18.Value
.Cells(iRow).Value = Me.Hours19.Value
.Cells(iRow).Value = Me.Hours20.Value
.Cells(iRow).Value = Me.Hours21.Value
.Cells(iRow).Value = Me.Hours22.Value
.Cells(iRow).Value = Me.Hours23.Value
.Cells(iRow).Value = Me.Hours24.Value
.Cells(iRow).Value = Me.Hours25.Value
.Cells(iRow).Value = Me.Hours26.Value
.Cells(iRow).Value = Me.Hours27.Value
.Cells(iRow).Value = Me.Hours28.Value
.Cells(iRow).Value = Me.Hours29.Value
.Cells(iRow).Value = Me.Hours30.Value
.Cells(iRow).Value = Me.Hours31.Value
End With
Application.ScreenUpdating = True
Unload Me
End Sub
All these lines will fail, there is no Column reference in them
Bookmarks