All cells from the first in a range to the end of the sheet

MLang

New Member
Joined
Dec 15, 2009
Messages
11
I wish to select:
...all of the cells in a single column
...from the top-left cell in a specific range
...to the last cell in the used area of the spreadsheet in that column

All of the searches I have done lead to to other specific cases. Hoping someone can help.

Thanks!
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Have you looked in to dynamic lists? There are a few good websites out there giving detailed advise on using dynamic lists - I would recommend searching for it in Google.
 
Upvote 0
Code:
Range("A5", Range("A9999").End(xlUp)).Select

Substitute whatever lower limit you think is necessary for "A9999".

Tables are a good alternative to bounding your data sets--you might look into that.
 
Upvote 0

Forum statistics

Threads
1,224,503
Messages
6,179,136
Members
452,890
Latest member
Nikhil Ramesh

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