Having trouble pasting data found in For loop into the next available row of different range on the same sheet. The range I'm trying to paste to is ("A295:A324"). I'm only using one sheet ("Printout") and never any others. He're's what I have so far
Sub CmpnyWkLoad_autofil()
lr = 338 'last row
lc = 69 'last column
For r = 332 To lr 'start at row 332
current = False
For c = 60 To lc 'start at column BH
If Cells(r, c).Value >= Range("V4").Value Then current = True: Exit For
Next c
If current Then Columns("A:AG").Rows(r).Copy
Next r
End Sub
What I'm looping/reading is pre-filled dates in columns ("BH:BQ") and if they are after today's date, it copies the first 33 cols in same row and pastes it to the next available row in ("A295:A324") Then continues loop to end. Any help finishing this would be much appreciated.
A:AG
, but I never see you paste it – tigeravatar