I want to copy the rows of checked boxes over onto a new sheet.
The code works fine when I use False instead of True, but I would like to use True. When using True it does nothing, but using False it will copy them over. Any ideas? or can i not do that with this method?
The below is using True which does not work. When the keyword is changed to False it works fine.
Sub copychecked()
Dim lastrowSC As Long, c As Range, I As Long
lastrowSC = Worksheets("SC").Cells(Rows.Count, 2).End(xlUp).Row
I = 2
For Each c In Worksheets("SC").Range("A2", Sheets("SC").Range("A" & lastrowSC)).Cells
If c(1, lastrowSC).Value = True Then
c.EntireRow.Copy
Worksheets("Checkboxes").Rows(I).PasteSpecial
I = I + 1
End If
Next c
I have tried using
= False then
else
'code here to copy and paste
to no avail.
Bookmarks