XLtoRIGHT and Down - help

p4nny

Board Regular
Joined
Jan 13, 2015
Messages
246
Hi

Please could you help with my code. Keep getting an error
Code:
Sub test()'
With Sheets("Logistics")


 Dim wsDest As Worksheet


    Set wsDest = Sheets("test")


Range("C18", Cells(Selection.End(xlDown).Row, Selection.End(xlToRight).Column)).Copy


wsDest.Cells(Rows.Count, "A").End(xlUp).Offset(1).PasteSpecial




End With


End Sub

My aim is select cell C18 to the last row within column C then XLToRight to select column D and Copy this to Sheet "Test"
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
How about
Code:
Sub test()
   Dim wsDest As Worksheet
   
   Set wsDest = Sheets("test")
   With Sheets("Logistics")
      .Range("C18", .Range("C" & Rows.Count).End(xlUp).Offset(, 1)).copy
      wsDest.Cells(Rows.Count, "A").End(xlUp).Offset(1).PasteSpecial
   End With
End Sub
 
Upvote 0
This works perfect, thank you

If I wished to apply to this to the activeworkbook, would I remove the "With Sheets("Logisitcs")" and use the wrap-around "For each sheet in activeworkbook."
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,393
Members
449,446
Latest member
CodeCybear

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