You want it your workbook to always open to a specific worksheet?

If yes, put this in a general module:

Option Explicit
sub auto_open()
application.goto worksheets("sheet99").range("a1")
end sub

(Change sheet99 to the worksheet you want to be the initial worksheet.)

Miqueias Lucas wrote:
>
> dear classmater
>
> Wow can i define same worksheet as initial worksheet at my excel project?
>
> --
> Miqueias Lucas - Analista/Programador de sistemas


--

Dave Peterson