Sub CopyRows()
Dim chkbx As CheckBox
Dim r As Long
Dim LRow As Long
For Each chkbx In ActiveSheet.CheckBoxes
If chkbx.Value = 1 Then
For r = 1 To Rows.Count
If Cells(r, 1).Top = chkbx.Top Then
With Worksheets("Complete NC")
LRow = .Range("B" & Rows.Count).End(xlUp).Row + 1
.Range("B" & LRow) = Date
.Range("B" & LRow & ":D" & LRow) = Worksheets("New Clients").Range("A" & r & ":D" & r).Value
.Range("A" & LRow) = Format(Now, "mm-dd-yyyy")
End With
Exit For
End If
Next r
End If
Next
End Sub
.Range("A" & LRow) = Date ' Change to column A
.Range("B" & LRow & ":E" & LRow) = Worksheets("New Clients").Range("A" & r & ":D" & r).Value ' Expand Target to E
.Range("A" & LRow) = Format(Now, "mm-dd-yyyy") ' Remove this or .Range("A" & LRow).NumberFormat = "mm-dd-yyyy"
Sub CopyRows()
Dim chkbx As CheckBox
Dim r As Long
Dim LRow As Long
For Each chkbx In ActiveSheet.CheckBoxes
If chkbx.Value = 1 Then
For r = 1 To Rows.Count
If Cells(r, 1).Top = chkbx.Top Then
With Worksheets("Complete NC")
LRow = .Range("B" & Rows.Count).End(xlUp).Row + 1
.Range("A" & LRow) = Date
.Range("B" & LRow & ":E" & LRow) = Worksheets("New Clients").Range("A" & r & ":D" & r).Value
.Range("A" & LRow).NumberFormat = "mm-dd-yyyy"
End With
Exit For
End If
Next r
End If
Next