VBA help! - Last Row query

iGavC

New Member
Joined
Aug 1, 2019
Messages
3
Hi,

I'm in the process of trying to consolidate multiple sheets into one.

Sub Consolidate_Data()


' Copy Data onto one sheet

Sheets("Data1").Select
Range("A3").Select
Range(Selection, Selection.End(xlDown)).Select
Range("A3:S" & Range("A" & Rows.Count)).Select
Selection.Copy
Sheets("All Data").Select
Range("A3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.End(xlDown).Select
ActiveCell.Offset(1, 0).Select

End Sub

Getting "Method 'Range' of object '_Global' failed
Keeps falling over on line 4. Any clue what I'm doing wrong?

Was trying to avoid using a LastRow Dim as it's across multiple tabs in the worksheet.

Any help appreciated.

Thanks
Kind regards
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
You want to use the last row in row A?

Code:
Range("A3:S" & Range("A" & Rows.Count).End(xlUp).Row).Copy
 
Upvote 0
Did you try what steve the fish suggested?
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

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