Copy and Paste Multiple
Closed
andyspud
Posts
1
Registration date
Thursday January 28, 2016
Status
Member
Last seen
January 28, 2016
-
Jan 28, 2016 at 09:47 AM
vcoolio Posts 1411 Registration date Thursday July 24, 2014 Status Moderator Last seen September 6, 2024 - Jan 29, 2016 at 10:15 PM
vcoolio Posts 1411 Registration date Thursday July 24, 2014 Status Moderator Last seen September 6, 2024 - Jan 29, 2016 at 10:15 PM
Related:
- Paste multiple times in excel
- Number to words in excel - Guide
- Gif in excel - Guide
- How to lasso multiple objects in photoshop - Guide
- Marksheet in excel - Guide
- Excel mod apk for pc - Download - Spreadsheets
1 response
vcoolio
Posts
1411
Registration date
Thursday July 24, 2014
Status
Moderator
Last seen
September 6, 2024
262
Jan 29, 2016 at 10:15 PM
Jan 29, 2016 at 10:15 PM
Hello AndySpud,
Perhaps the following code will do it for you:-
Following is a link to my test work book for you to peruse. Just run the code by pressing Alt + F8 and click on "run" in the window that opens.
https://www.dropbox.com/s/yuqmcpc38k3ntlk/AndySpud%28Cell%20A1%20values%20from%20multi%20sheets%20to%20Summary%29.xlsm?dl=0
I hope that this helps.
Cheerio,
vcoolio.
Perhaps the following code will do it for you:-
Sub CopyAll() Application.ScreenUpdating = False Dim ws As Worksheet For Each ws In Worksheets If ws.Name <> "Summary" Then ws.Select Range("A1").Copy Sheets("Summary").Range("A" & Rows.Count).End(3)(2) End If Next ws Sheets("Summary").Select Application.ScreenUpdating = True End Sub
Following is a link to my test work book for you to peruse. Just run the code by pressing Alt + F8 and click on "run" in the window that opens.
https://www.dropbox.com/s/yuqmcpc38k3ntlk/AndySpud%28Cell%20A1%20values%20from%20multi%20sheets%20to%20Summary%29.xlsm?dl=0
I hope that this helps.
Cheerio,
vcoolio.