here you go :
Private Sub Workbook_Open()
sheets("Sheet1").Activate
[A1].select
End Sub
LOCKMAN,
I have my sheet 1 renamed to Data1, in the explorer
it shows it as Sheet1(Data1)im sure this is why it
doesn't work properly, any ideas? it would be nice to be able to
fix this.
Thanks,
Corel
so change it to your sheet name like below..
Private Sub Workbook_Open()
sheets("Data1").Activate
[A1].select
End Sub
regards
This is very strange i know the code works because
i've tried it in the past in a new workbook, i just
opened a new book wrote the code renamed the sheets
and it works fine? Like i said in the first responce
it's never worked for me in this particular book.
Thanks for the help,
Corel
sheets("Data1").Activate
: I have my sheet 1 renamed to Data1, in the explorer : it shows it as Sheet1(Data1)im sure this is why it : doesn't work properly, any ideas? it would be nice to be able to : fix this. : Thanks,
Try;
Private Sub Workbook_Open()
Sheet1.Activate
[A1].Select
End Sub
HTH
Ivan This is very strange i know the code works because i've tried it in the past in a new workbook, i just opened a new book wrote the code renamed the sheets and it works fine? Like i said in the first responce it's never worked for me in this particular book. Thanks for the help,