![]() |
|
#1
|
|||
|
|||
|
Need help adding the functionality to loop through the copy/paste Special Transpose process until the end of Column A data to complete.
Code:
Sub Macro2_CopyPasteTRANSPOSE()
'
'copy paste data and paste special Transpose, loop til end of Col A
Range("A1:A6").Copy
Range("B6").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
ActiveWindow.SmallScroll Down:=8
Range("A9:A14").Copy
Range("B9").Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
ActiveWindow.SmallScroll Down:=8
'need to know how to loop - continue going down til' end of column A (
'disable marching ants around copied range
Application.CutCopyMode = False
End Sub
|
| Tags |
| copy paste special loop |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Loop through files and Copy Table Row and Paste into Different Document
|
spiderman1369 | Word VBA | 2 | 10-15-2014 08:30 AM |
Paste Special: Copy and Paste Formatting Only?
|
tinfanide | Word | 6 | 03-06-2013 12:21 AM |
DOCVARIABLE copy paste special
|
cyndor | Word | 2 | 04-06-2012 03:57 AM |
special copy/paste
|
iconofsin | Excel | 1 | 09-15-2010 12:10 AM |
Copy and paste special
|
Dace | Excel | 2 | 02-16-2009 12:18 PM |