Stack range of data to next empty row in other sheet
Solved/Closed
Related:
- Stack range of data to next empty row in other sheet
- How to copy data from one sheet to another in excel automatically - Guide
- How to screenshot excel sheet - Guide
- Blue stack 5 - Download - Android emulators
- Little alchemy cheat sheet - Guide
- Google sheet right to left - Guide
2 replies
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
January 16, 2023
547
Aug 13, 2015 at 11:26 AM
Aug 13, 2015 at 11:26 AM
Hi Milli,
What is the deal with all the dots?
Try the following code:
Best regards
What is the deal with all the dots?
Try the following code:
Sub RunMe() Dim rng1, rng2 As Range Sheets("Sheet1").Select Set rng1 = Range("D24:D50") Set rng2 = Range("AC24:AC50") Sheets("Sheet2").Select rng1.Copy Range("A" & Rows.Count).End(xlUp).Offset(1, 0) rng2.Copy Range("B" & Rows.Count).End(xlUp).Offset(1, 0) End Sub
Best regards
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
January 16, 2023
547
Aug 17, 2015 at 10:37 AM
Aug 17, 2015 at 10:37 AM
Hi Milli,
Sure thing, for that use the following code:
Best regards,
Trowa
Sure thing, for that use the following code:
Sub RunMe() Dim rng1, rng2 As Range Sheets("Sheet1").Select Set rng1 = Range("D24:D50") Set rng2 = Range("AC24:AC50") Sheets("Sheet2").Select rng1.Copy Range("A" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial (xlPasteValues) rng2.Copy Range("B" & Rows.Count).End(xlUp).Offset(1, 0) End Sub
Best regards,
Trowa
Aug 13, 2015 at 10:45 PM