VBA Ranges question

Isabella

Well-known Member
Joined
Nov 7, 2008
Messages
643
Hi, i have the below code which copies from A3:C and then exports to A6. Is there a way to limit the copy and only copy the UsedRange from A3:C?


Code:
Sub Testing()

Dim LastRow As Long
Dim shtDst As Worksheet
Dim shtTest As Worksheet

Set shtDst = Sheets("Raw")
Set shtTest = Sheets("Test")

    With Sheets(shtTest)
            LastRow = Range("A" & Rows.Count).End(xlUp).Row
            With .Range("A3:C" & LastRow)
                 .Copy
                 shtDst.Range("A6").PasteSpecial xlPasteValues
            End With
    End With
End Sub
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Isn't that what the code already does?
 
Upvote 0

Forum statistics

Threads
1,224,516
Messages
6,179,231
Members
452,898
Latest member
Capolavoro009

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