Select Data xlDown -1 VBA

Bench

Board Regular
Joined
Aug 27, 2009
Messages
134
Hi,

looking for a way to select data, beginning at A4:C4 down to the bottom of the range but excluding the final line which will be Grand Total line. The selected data will be used to make a chart.

Any ideas?

Thanks

Ben
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
You could try this.
Code:
Set rngData = Range(Range("A4"), Range("A4").End(xlDown).Offset(-1)).Resize(, 3)
 
rngData.Select
A couple of points though.

1 You shouldn't need to use Select.

2 Determining the no of rows of data is normally better done by starting at the bottom not the top, ie using xlUp.
 
Upvote 0
You could try this.
Code:
Set rngData = Range(Range("A4"), Range("A4").End(xlDown).Offset(-1)).Resize(, 3)
 
rngData.Select
A couple of points though.

1 You shouldn't need to use Select.

2 Determining the no of rows of data is normally better done by starting at the bottom not the top, ie using xlUp.

Perfect, thanks
 
Upvote 0

Forum statistics

Threads
1,214,571
Messages
6,120,302
Members
448,954
Latest member
EmmeEnne1979

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