Extend Selection (in Col A) based on criteria (Col B is blank)

GTS

Board Regular
Joined
Aug 31, 2009
Messages
108
Office Version
  1. 365
Platform
  1. Windows
Hello

I am trying to figure out how to extend my selection from a single cell in Col A (active cell), downward, for as long as Col B is blank.

That is, keep extending the selection downward as long as Col B is blank and to stop once an entry in Col B is encountered.
The selection should not include the cell which has an entry in Col B on the same row.
The selection is only in Col A.

Note that there may be blank entries in Col A but that doesn't matter. I want to make a continuous selection.

Can someone help with the vba code please? I've searched, but haven't had luck hitting upon something so far.

GTS
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Perhaps.
Code:
Range(ActiveCell, ActiveCell.Offset(,1).End(xlDown).Offset(-1,-1)).Select
 
Upvote 0
Solution
Perhaps.
Code:
Range(ActiveCell, ActiveCell.Offset(,1).End(xlDown).Offset(-1,-1)).Select

Perfect! Thank you Norie.
Slick what you have come up with. Nice and compact.
Very much appreciated.

GTS
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,875
Members
452,363
Latest member
merico17

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