Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Here's a code that would work for you, Remember that you only have 256 columns though you can ony do this fo 64 rows Code ------------------- Sub CutPasteToRowA() Range("A2").Select Do Until ActiveCell = "" ActiveCell.Range("A1:D1").Cut Destination:=Range("A1").End(xlToRight).Offset(0, 1).Range("A1") ActiveCell.Offset(1, 0).Select Loop Range("A1").Select End Sub ------------------- -- Paul Morga ----------------------------------------------------------------------- Paul Morgan's Profile: http://www.officehelp.in/member.php?userid=519 View this thread: http://www.officehelp.in/showthread.php?t=136929 Posted from - http://www.officehelp.i |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help to copy multiple columns to a spreadsheet | Excel Worksheet Functions | |||
Copy the same 2 columns from multiple spreadsheets into one new sh | Excel Discussion (Misc queries) | |||
VBA: Copy from columns on multiple worksheets | Excel Programming | |||
Copy the row multiple times while translating the columns | Excel Programming | |||
Copy/Paste Function for multiple columns | Excel Programming |