Excel Question

J

Jewel

Creating financial tables in excel, I need to know what to do in order to select the beginning of the table to the end of the table.
 
F

Frank Kabel

Hi
try
Set rng = Range(Cells(1,1),Cells(rows.count,1).End(xlup))
rng.select

for getting column A from the beginning to the end
 
Top