PC Review


Reply
Thread Tools Rate Thread

Automatically go to a certain cell

 
 
=?Utf-8?B?bmFiYW5jbw==?=
Guest
Posts: n/a
 
      26th Jun 2007
Hello,

is there a way, once asheet is opedned in excel, to move the cursor to the
botto mof the sheet?

For example, if I have data from row 1 through 100, when i open the sheet my
cursor would automatically go to the bottom at row 101. Then after I fill in
data for more rows, the cursor would autoamtically go to the next un-used row.

Is that possible?

 
Reply With Quote
 
 
 
 
=?Utf-8?B?TWlrZSBI?=
Guest
Posts: n/a
 
      26th Jun 2007
Workook open event


Private Sub Workbook_Open()
Range("A65536").End(xlUp).Select
End Sub

You never said which column so A is assumed

Mike


"nabanco" wrote:

> Hello,
>
> is there a way, once asheet is opedned in excel, to move the cursor to the
> botto mof the sheet?
>
> For example, if I have data from row 1 through 100, when i open the sheet my
> cursor would automatically go to the bottom at row 101. Then after I fill in
> data for more rows, the cursor would autoamtically go to the next un-used row.
>
> Is that possible?
>

 
Reply With Quote
 
=?Utf-8?B?TWlrZQ==?=
Guest
Posts: n/a
 
      26th Jun 2007
Try this

Private Sub Workbook_Open()
Range("A65535").End(xlUp).Offset(1, 0).Activate
End Sub

"nabanco" wrote:

> Hello,
>
> is there a way, once asheet is opedned in excel, to move the cursor to the
> botto mof the sheet?
>
> For example, if I have data from row 1 through 100, when i open the sheet my
> cursor would automatically go to the bottom at row 101. Then after I fill in
> data for more rows, the cursor would autoamtically go to the next un-used row.
>
> Is that possible?
>

 
Reply With Quote
 
=?Utf-8?B?bmFiYW5jbw==?=
Guest
Posts: n/a
 
      26th Jun 2007
Thanks Mike.

Yes, I am using column A. For some reason the code does not work. I pasted
it into "view code" and saved the sheet. When I go ito the sheet, the cursur
does not automatically go to the first cell in column A that does not have
typing in it.

Any ideas?

"Mike H" wrote:

> Workook open event
>
>
> Private Sub Workbook_Open()
> Range("A65536").End(xlUp).Select
> End Sub
>
> You never said which column so A is assumed
>
> Mike
>
>
> "nabanco" wrote:
>
> > Hello,
> >
> > is there a way, once asheet is opedned in excel, to move the cursor to the
> > botto mof the sheet?
> >
> > For example, if I have data from row 1 through 100, when i open the sheet my
> > cursor would automatically go to the bottom at row 101. Then after I fill in
> > data for more rows, the cursor would autoamtically go to the next un-used row.
> >
> > Is that possible?
> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to cut part of a text from one cell and automatically paste itonto another cell Sonja Microsoft Excel Misc 6 17th Aug 2009 11:35 PM
Automatically change cell colors based on date in cell Greg Microsoft Excel Misc 1 27th Jan 2009 05:53 PM
automatically format cell based on content of another cell =?Utf-8?B?Qmx1c3RyZWFrZXI=?= Microsoft Excel Worksheet Functions 2 15th Jul 2007 11:52 AM
automatically date a cell when entering data in adjoining cell =?Utf-8?B?Sm9obiBJbW0=?= Microsoft Excel Programming 1 9th Oct 2006 02:53 PM
If data added to Excel cell it automatically make's another cell equal zero ianjohnmurray@hotmail.com Microsoft Excel Programming 1 19th Oct 2005 06:00 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:15 PM.