How to copy columns to a specific column header and repeat?
Solved/Closed
stylus33
Posts
2
Registration date
Friday October 13, 2017
Status
Member
Last seen
November 10, 2017
-
Updated on Oct 14, 2017 at 06:56 AM
stylus33 Posts 2 Registration date Friday October 13, 2017 Status Member Last seen November 10, 2017 - Nov 10, 2017 at 12:42 AM
stylus33 Posts 2 Registration date Friday October 13, 2017 Status Member Last seen November 10, 2017 - Nov 10, 2017 at 12:42 AM
Related:
- How to copy columns to a specific column header and repeat?
- How to find specific words on a page - Guide
- Display two columns in data validation list but return only one - Guide
- Tweetdeck larger columns - Guide
- How to delete column in word - Guide
- Front panel audio header - Guide
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Oct 16, 2017 at 11:48 AM
Oct 16, 2017 at 11:48 AM
Hi Stylus,
The following code will help you out:
Best regards,
Trowa
The following code will help you out:
Sub RunMe() Dim lCol, x As Integer lCol = Cells(1, Columns.Count).End(xlToLeft).Column For x = 2 To lCol ActiveSheet.UsedRange.Columns(x).Cut _ Cells(Rows.Count, 1).End(xlUp).Offset(1, 0) Next x End Sub
Best regards,
Trowa
Nov 10, 2017 at 12:42 AM