Last Cell

A

Alan

I know this has been asked before but I cant find what I want on Google.
I need to get the address or row number of the first empty cell in column A,
either will do, I need to use VB to copy and paste data from ten sheets into
one.
A formula or a VB way would be great, anyway of identifying the first empty
cell. This cell may be empty or contain a null string. Any help would be
reaaly good.
TIA
Alan.
 
D

Don Guillett

to find the last row
x=cells(rows.count,"a").end(xlup).row+1
to find the next empty
x=cells(1,1).end(xldown).row ' or address
 
Top