restructing navigation

G

Gord Dibben

Edwin

Something like this in a worksheet module........

Private Sub Worksheet_Activate()
ScrollArea = "A1:M45"
End Sub

Or from J.E. McGimpsey........................

Private Sub Workbook_Open()
With Sheets("MyHelp")
.ScrollArea = .UsedRange.Address
End With
End Sub

This setting doesn't persist from session to session, so you have to
use the Workbook_Open event.

End J.E. quote.........................

Gord Dibben XL2002
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top