View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Tim Marsh[_2_] Tim Marsh[_2_] is offline
external usenet poster
 
Posts: 14
Default scrolling to a specific cell

Thank you Amit (& Tom)

this'll do nicely... for the record i did fine yet another way, but it
involved a 'do...until' loop and was very inefficient.

cheers from foggy, wet England,

tim

"Amit Shanker" wrote in message
...
Sorry missed the scrolling automatically part, so please use this instead

:

Option Explicit

Private Sub Worksheet_Activate()

Cells.Find(Date).Select
ActiveWindow.ScrollRow = ActiveCell.Row

End Sub

Amit
"Amit Shanker" wrote in message
...
Option Explicit

Private Sub Worksheet_Activate()

Cells.Find(Date).Select

End Sub

Hope this helps,
Amit

"Tim Marsh" wrote in message
...
sorry - having a bit of a mind-block. I have a worksheet with a

column
of
dates and would like to auto-scroll to the current date (if available)

in
column B, every time the sheet is activated (so that the row is

visible
for
entering fresh data)... i know i should be able to do this, but just

can't
think how... its been a long day! Can anyone give me the answer?

tia,

tim