Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel: need to move to next cell down 1

Status
Not open for further replies.

azzi2000

MIS
Jan 28, 2004
145
US
Ineed to go to next cell down:

Application.Goto Reference:="R65000C1"
Selection.End(xlUp).Select
'need code to go next cell down 1 row

Please advice,
Thank you.
Dré

 

Hi,
Code:
ActiveCell.Offset(1,0).Select


Skip,

[glasses] [red]Be advised:[/red]When Viscounts were guillotined just as they were disclosing where their jewels were hidden, it shows to go that you should...
Never hatchet your Counts before they chicken! [tongue]
 


or...
Code:
Cells(Cells.Rows.Count, 1).End(xlUp).Offset(1, 0).Select
But I don't recomment doing a bunch of Activates and Selects in a macro...

How Can I Make My Code Run Faster? faq707-4105

Skip,

[glasses] [red]Be advised:[/red]When Viscounts were guillotined just as they were disclosing where their jewels were hidden, it shows to go that you should...
Never hatchet your Counts before they chicken! [tongue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top