BIGTONE559
Active Member
- Joined
- Apr 20, 2011
- Messages
- 336
Lost as to the proper syntax when trying to paste rows of cells to "J5" and keep a running list
The message box would show me that it was selecting the proper values (and will be removed) however i don't know how to copy those values into Cells Beginning with "J5" i originally used range("J5") but it would overwrite the existing values as it looped.
please help!
Code:
Sub Help_ME()
Dim cell As Range
Dim dataRange As Range
Set dataRange = Range("G5:G30")
For Each cell In dataRange
If cell.Value = True Then
Range(Cells(cell.Row, 1), Cells(cell.Row, 5)).Copy
msgBox("Blah blah blah")
Else
End If
Next cell
End Sub
please help!