Copy & Paste Macro help Please
Closed
darwinchin
Posts
2
Registration date
Thursday October 1, 2009
Status
Member
Last seen
October 1, 2009
-
Oct 1, 2009 at 11:52 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Oct 2, 2009 at 11:19 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Oct 2, 2009 at 11:19 PM
Related:
- Copy & Paste Macro help Please
- How to copy paste youtube link on android - Guide
- Excel online macro - Guide
- Excel run macro on open - Guide
- Copy paste e with accent - Guide
- Macro for number to words in excel - Guide
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Oct 2, 2009 at 11:19 PM
Oct 2, 2009 at 11:19 PM
you need about 249000 rows. It is possible only in excel 2007
try this macro
try this macro
Sub test() Dim j As Integer, k As Integer Worksheets("sheet1").Activate j = Range("a1").End(xlToRight).Column For k = 2 To j Range(Cells(1, k), Cells(1, k).End(xlDown)).Copy Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).PasteSpecial Next k Application.CutCopyMode = False End Sub