Hi all.
I want to create a macro to paste some data into the next empty cell. Below is sort of what I need but this show it going to a particular cell, I need it to got to next open cell in the range from say BY3. So next macro run it would copy and paste the data from T3:T9 (always this range) to BZ3 then CA3, CB3 and so on.
Any idea's?
Thanks Dave
[[Sub CopyData()]
'
' CopyData Macro
' Copy The Data To Build Graph
'
'
Range("T3:T9").Select
Selection.Copy
Range("BY3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
[End Sub]]
Bookmarks