Selecting a range above the blank - macro

PotatoBrado

New Member
Joined
Oct 24, 2018
Messages
6
Is there a simple way to select a range from the currently selected cell down to the cell directly above a blank?
I'm writing a macro where I've found the first cell in a column that I need, but I haven't figured out how to do a "Shift + Select" down to the cell above the next blank cell.
It can't be a specific range down to like "A15" or something because with each set of numbers I use the number of rows with data will change.

Any help would be appreciated! Thanks!
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Perhaps.
Code:
Range(ActiveCell, ActiveCell.End(xlDown).Offset(-1)).Select
 
Upvote 0
Capture.PNG


I've been trying to find a variation on what you just posted. For some reason what you wrote grabs more than just down to the next blank cell.
 
Upvote 0
In an unused cell type
=isblank(A23)
Change the A23 to reflect one of the "blank" cells, what does it say?
 
Upvote 0
open
Ultimately, I'm trying to select the cells pictured. Then eventually the next set. And the next set.

The =isblank function returns a 0.
 
Upvote 0
Isblank should have returned either True or False, but either way those cells are not blank.
 
Upvote 0

Forum statistics

Threads
1,215,463
Messages
6,124,963
Members
449,200
Latest member
indiansth

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