A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

opening sheet, next available cell displayed



 
 
Thread Tools Display Modes
  #1  
Old January 5th, 2007, 02:23 PM posted to microsoft.public.excel.newusers
Stephen
external usenet poster
 
Posts: 285
Default opening sheet, next available cell displayed

When I open a workbook/sheet, I want the next available cell for data entry
to be displayed, at the moment the page scrolls somewhere halfway up existing
data, meaning I have to scroll down to the next data entry point. Can I do
this ??
  #2  
Old January 5th, 2007, 02:33 PM posted to microsoft.public.excel.newusers
John Bundy
external usenet poster
 
Posts: 73
Default opening sheet, next available cell displayed

Put this on a workbook open event, change sheet name and cell column as
needed
Private Sub Workbook_Open()
Sheets("sheet1").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).Select
End Sub

--
--
-John
Please rate when your question is answered to help us and others know what
is helpful.

"Stephen" wrote in message
...
When I open a workbook/sheet, I want the next available cell for data
entry
to be displayed, at the moment the page scrolls somewhere halfway up
existing
data, meaning I have to scroll down to the next data entry point. Can I
do
this ??



  #3  
Old January 5th, 2007, 04:49 PM posted to microsoft.public.excel.newusers
Ron de Bruin
external usenet poster
 
Posts: 2,861
Default opening sheet, next available cell displayed

Note: If sheet1 is not the activesheet when you open the workbook the code is not working

Use this in the open event

Application.Goto Sheets("Sheet1").Cells(Rows.Count, "A").End(xlUp)(2)


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"John Bundy" wrote in message ...
Put this on a workbook open event, change sheet name and cell column as
needed
Private Sub Workbook_Open()
Sheets("sheet1").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).Select
End Sub

--
--
-John
Please rate when your question is answered to help us and others know what
is helpful.

"Stephen" wrote in message
...
When I open a workbook/sheet, I want the next available cell for data
entry
to be displayed, at the moment the page scrolls somewhere halfway up
existing
data, meaning I have to scroll down to the next data entry point. Can I
do
this ??



 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:41 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.