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:
But this does not stop at row 40.
Thanks in advance for the help!
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!