Find next Empty row in Range or MessageBox

Panik

New Member
Joined
Nov 12, 2009
Messages
20
Hi, I'm trying to find the next empty row in a specific range (A10:A39). If the cell is empty, then the next empty row is selected. I have the basic figured out, my problem is I would like it to ONLY look in the specific range. EG, I do not want A40 selected. Once A10 - A39 are full, I would like a message box stating all available slots are full.

The line I am using to select the next empty row is:

Code:
Range("B10:B39").End(xlDown).Offset(1, 0).Select

But this does not stop at row 40.

Thanks in advance for the help!
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
How about
Code:
Sub NextBlank()
   Dim Rng As Range
   On Error Resume Next
   Set Rng = Range("A10:A39").SpecialCells(xlBlanks)(1)
   On Error GoTo 0
   If Rng Is Nothing Then MsgBox "Full": Exit Sub
   Rng.Select
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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