hi thanks greg,
here they are again hopefully this works;
I want to change this ;
http://i1134.photobucket.com/albums/m619/annied2/excel2.jpg
To look like this;
http://i1134.photobucket.com/albums/m619/annied2/excel1.jpg
A
Im trying to move column cells b1 to b172555 to row A12555.
Hi burrgogi,
Thanks for your reply.
Im trying to move column cells b1 to b172555 to row A12555. does that make sense???
Hi greg,
My VBA level is very basic. Ive only ever used macro to record an action thats about it.
Sub Transpose_RowB()
'
' Test Macro For AnnieD
'
'
Range("B1:B172555").Select
Selection.Copy
Range("A12555").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True
End Sub