How to Execute a Macro to Go to one row down after GOTO command

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

Guest

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
ends with my cursor on the last cell of a the two column worksheet (Column A
& B) which in this case is column B. I want to complete the macro execution
by telling the cursor to go down 1 and left 1 or left 1 and down 1. I want
to the cursor to point to next line blank line as I repeat the process as I
add names and tel #'s.

Thanks,
=========== See script below=======

Sub AddName()
'
' AddName Macro
' Macro recorded 6/6/2007 by George
'
Range("D19").Select
Sheets("Personal").Select
Range("A1").Select
Selection.SpecialCells(xlCellTypeLastCell).Select
ActiveCell.SpecialCells
End Sub
 
The script should be the following and the one that I posted in my inqury:

Range("D19").Select
Sheets("Personal").Select
Selection.SpecialCells(xlCellTypeLastCell).Select
 
hi
Sub AddName()
Sheets("Personal").Select
Range("A65000").end(xlup).offset(1,0).select
end sub

regards
FSt1
 
Thanks FST1..... as soon as I did the cut and past and save the data and
then executed the macro.... it took me right to the row with the blank cell.
 
Gebo,
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.
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).

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