Code that jumps to/activates next non-blank cell in range.

mlarson

Well-known Member
Joined
Aug 25, 2011
Messages
509
Office Version
  1. 2010
Platform
  1. Windows
Hope you all are doing well. Would like some help on this if you're willing.

I would like a code that jumps to/activates the next non-blank cell in the range I12:I300.

For example, the code would jump to/activate cell I14 if the sheet looked like this...
I12
I13
I14 Excel
I15
I16 Is
I17 Awesome
I18

Thanks for your help!
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Actually, I think I found the answer...

Sub JumpToNextNonBlankCell()
Dim rng As Range
Set rng = Range("I12:I300").Find("", Range("I12"), xlValues, xlWhole, xlByRows, xlNext)
If Not rng Is Nothing Then
rng.Select
Else
MsgBox "No more non-blank cells in the range!"
End If
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,119
Messages
6,123,172
Members
449,094
Latest member
bes000

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