Thread
:
Transposing numbers
View Single Post
#
2
Posted to microsoft.public.excel.programming
SuperJas
external usenet poster
Posts: 66
Transposing numbers
Straight from the Macro Recorder:
Sub Transpose()
Range("G1:M1").Select
Selection.Copy
Range("G9").Select
Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False _
, Transpose:=True
End Sub
SuperJas.
Reply With Quote
SuperJas
View Public Profile
Find all posts by SuperJas