find row number of next empty cell in range

A

Albert Browne

I need to find the row number of next empty cell in a range E7:E66. How do I
do this.

Thanks,

Albert
 
P

Per Jessen

Hi Albert

Assuming you have a heading in E6, you can use this line

NextRow = Range("E67").End(xlUp).row

Regards,
Per
 
D

Don Guillett

Or, if you want to go from the top down

NextRow = Range("E7").End(xldown).row+1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top