Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 01-17-2020, 05:07 AM
jeffreybrown jeffreybrown is offline Copy Paste Special Loop to End of Col A Windows 10 Copy Paste Special Loop to End of Col A Office 2016
Expert
 
Join Date: Apr 2016
Posts: 673
jeffreybrown has a spectacular aura aboutjeffreybrown has a spectacular aura about
Default

This should get you started



Code:
Sub Macro2_CopyPasteTRANSPOSE()
    Dim i As Long
    Dim x As Long: x = 6
    Dim LastRow As Long
    LastRow = Range("A" & Rows.Count).End(xlUp).Row
    Application.ScreenUpdating = False
    For i = 1 To LastRow Step 8
        Range("A" & i).Resize(6).Copy
        Range("B" & x).PasteSpecial xlPasteAll, , , Transpose:=True
        x = x + 3
    Next i
    Application.CutCopyMode = False
    Application.ScreenUpdating = True
End Sub
Reply With Quote
Reply

Tags
copy paste special loop



Similar Threads
Thread Thread Starter Forum Replies Last Post
Copy Paste Special Loop to End of Col A Loop through files and Copy Table Row and Paste into Different Document spiderman1369 Word VBA 2 10-15-2014 08:30 AM
Copy Paste Special Loop to End of Col A Paste Special: Copy and Paste Formatting Only? tinfanide Word 6 03-06-2013 12:21 AM
Copy Paste Special Loop to End of Col A DOCVARIABLE copy paste special cyndor Word 2 04-06-2012 03:57 AM
Copy Paste Special Loop to End of Col A special copy/paste iconofsin Excel 1 09-15-2010 12:10 AM
Copy Paste Special Loop to End of Col A Copy and paste special Dace Excel 2 02-16-2009 12:18 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 11:48 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft