Optimizing code efficiency

RafFiniert

New Member
Joined
Mar 18, 2025
Messages
7
Office Version
  1. 2013
Platform
  1. Windows
Among other tips/tricks, I read that I should rid my code of all .Select statements. I have done so by and large. However, I am stuck on this one.

(Original code that works)

Worksheets("DM2").Select
Worksheets("DM2").Range("A5:J5").Select
Worksheets("DM2").Range("A5:J5").Copy
Worksheets("Routes").Select
Worksheets("Routes").Range("A3:A3").Select
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
Worksheets("NamedRanges").Range("FromHereSubsequently").PasteSpecial xlPasteValues

Worksheets("NamedRanges").Range("DriveTime").Copy
Worksheets("Routes").Range("H3:H3").Select
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(0, 7).PasteSpecial xlPasteValues
Worksheets("NamedRanges").Range("ArriveTime").Copy
Worksheets("Routes").Range("I3:I3").Select
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(0, 8).PasteSpecial xlPasteValues
Worksheets("NamedRanges").Range("EndTime").Copy
Worksheets("Routes").Range("J3:J3").Select
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(0, 9).PasteSpecial xlPasteValues

(What I tried that doesn't work)

Worksheets("Routes").Range("A3:A3").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Value = Worksheets("DM2").Range("A5:J5").Value
Worksheets("NamedRanges").Range("FromHereSubsequently").Value = Worksheets("DM2").Range("A5:J5").Value

Worksheets("Routes").Range("H3:H3").Cells(Rows.Count, 1).End(xlUp).Offset(0, 7).Value = Worksheets("NamedRanges").Range("DriveTime").Value
Worksheets("Routes").Range("I3:I3").Cells(Rows.Count, 1).End(xlUp).Offset(0, 8).Value = Worksheets("NamedRanges").Range("ArriveTime").Value
Worksheets("Routes").Range("J3:J3").Cells(Rows.Count, 1).End(xlUp).Offset(0, 9).Value = Worksheets("NamedRanges").Range("EndTime").Value


Based on how I got rid of my other .Select/.Copy statements, it seems intuitive that this should work. Only it doesn't.
 
With your revised code, the source range and destination range need to be the same size.
 
Upvote 0
Try
VBA Code:
Worksheets("DM2").Range("A5:J5").Copy
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
Worksheets("NamedRanges").Range("FromHereSubsequently").PasteSpecial xlPasteValues

Worksheets("NamedRanges").Range("DriveTime").Copy
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(0, 7).PasteSpecial xlPasteValues
Worksheets("NamedRanges").Range("ArriveTime").Copy
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(0, 8).PasteSpecial xlPasteValues
Worksheets("NamedRanges").Range("EndTime").Copy
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(0, 9).PasteSpecial xlPasteValues
Application.CutCopyMode = False


'(What I tried that doesn't work)
 
Upvote 0
Solution
With your revised code, the source range and destination range need to be the same size.
Thanks for the response. Unfortunately, they are not the same size. The source (1 row x 5 cols) is being copied to the bottom of an existing list.
 
Upvote 0
Try
VBA Code:
Worksheets("DM2").Range("A5:J5").Copy
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
Worksheets("NamedRanges").Range("FromHereSubsequently").PasteSpecial xlPasteValues

Worksheets("NamedRanges").Range("DriveTime").Copy
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(0, 7).PasteSpecial xlPasteValues
Worksheets("NamedRanges").Range("ArriveTime").Copy
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(0, 8).PasteSpecial xlPasteValues
Worksheets("NamedRanges").Range("EndTime").Copy
Worksheets("Routes").Cells(Rows.Count, 1).End(xlUp).Offset(0, 9).PasteSpecial xlPasteValues
Application.CutCopyMode = False


'(What I tried that doesn't work)
This worked--thanks.
 
Upvote 0
Thanks for the response. Unfortunately, they are not the same size. The source (1 row x 5 cols) is being copied to the bottom of an existing list.
If the source is a fixed size, then you can fix the destination size with the Resize property.
 
Last edited:
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top