Hi,
I am looking to copy a date for a range, then a different date for a 2nd range and repeat this until all the dates that are found in the column have been copied next to the event.
I can find the date and copy it to where I like, however I'm unsure how to copy it down for that set range then how to step once it finds a blank row to start the next range.
The code below is what I have so far.
Any help would be appreciated.
Thanks,
EMcK
I am looking to copy a date for a range, then a different date for a 2nd range and repeat this until all the dates that are found in the column have been copied next to the event.
I can find the date and copy it to where I like, however I'm unsure how to copy it down for that set range then how to step once it finds a blank row to start the next range.
The code below is what I have so far.
Code:
Set rngB = Sheets(wsName).Range("B3:B1000") For Each cell In rngB
If cell.Value Like "*day*" Then
cell.Copy cell.Offset(1, 3)
End If
Next cell
Any help would be appreciated.
Thanks,
EMcK