Assuming you want to jump to the last populated cell in a column using VBA

Code:
Worksheets("Name of sheet").Cells(Rows.Count, 1).End(xlUp).Select
will do; where 1 is the column index (1=A, 2=B etc)