Excel Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
 
Back
Top