View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Colo[_71_] Colo[_71_] is offline
external usenet poster
 
Posts: 1
Default Moving multiple row cells into one row

Why don't you use PasteSpecial Transpose when you paste?
Or coding something like this.


Code:
--------------------

Sub Test()
Dim Target As Range
On Error Resume Next
Set Target = Application.InputBox("Select Data", Type:=8)
If Target Is Nothing Then Exit Sub
Target.Copy
Selection.PasteSpecial Transpose:=True
Application.CutCopyMode = False
End Sub

--------------------



---
Message posted from http://www.ExcelForum.com/