> Simple Macro which take me to the last cell on a tab sheet titled "Personal".
> This is a database that I can add names and telephone numbers. The macro
[quoted text clipped - 18 lines]
> ActiveCell.SpecialCells
> End Sub
Gebo,
Some comments. You wrote:
> Range("D19").Select
> Sheets("Personal").Select
> Selection.SpecialCells(xlCellTypeLastCell).Select
This will use the current selection in sheet Personal, not necessarily D19, if another sheet
was .active while the Range("D19").Select was executed.
FSt1 wrote:
> Range("A65000").end(xlup).offset(1,0).select
This will look upwards from A65000, ignoring anything that might be in column B.
Another possibility. This will look for stuff in columns A and B, but will be confounded by
anything that might be in column C adjacent to your stuff:
Range("A1").SpecialCells(xlCellTypeLastCell).Offset(1, -1).Select
If there is stuff in column C, you can insert a column between B and C (and hide it if you
want).

Signature
Earl Kiosterud
www.smokeylake.com
Note: Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
> The script should be the following and the one that I posted in my inqury:
>
[quoted text clipped - 24 lines]
>> ActiveCell.SpecialCells
>> End Sub