View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Markus Scheible Markus Scheible is offline
external usenet poster
 
Posts: 3
Default automatically finding the first empty cell

Hi Bob,

firstEmptyCell = Range("B15").End(xlDown).Offset(1,0).Address

returns the address of that empty cell. But beware. it throws an error if
B16 is empty, so best to test for that explicitly and if so, bypass that
statement.


heavy thanks :o)

Best regards,

Markus