Can anyone advise me on how I can repeat a copy based on locating the next blank cell in a column.
I currently use some code based around Ctrl+down and starting in cell “R2C5″ to locate cell before blank, copy that cell contents down to the blank cell find next blank etc.etc.
Application.Goto Reference:=”R2C5”
Selection.End(xlDown).Select
Selection.End(xlDown).Select
Selection.Copy
Range(“E7”).Select
ActiveSheet.Paste
Application.CutCopyMode = False
I am not very confident in setting variables and creating loops until done