View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Kevin O'Neill[_2_] Kevin O'Neill[_2_] is offline
external usenet poster
 
Posts: 44
Default Code to tranpose table

I don't think this is exactly what you need, but it'll help

Sub Macro8()
Range("M1:P7").Select 'What to copy
Selection.Copy
Range("Q2").Select 'Where to paste it
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone,
SkipBlanks:= _
False, Transpose:=True
End Sub