HELP!! Cannot set any sheets to visible

  • Thread starter Thread starter cassidyr1
  • Start date Start date
C

cassidyr1

That's great thanks!

I wonder why auto_open works and workbook_open doesn't work?

Thanks again!

Richar
 
I don't think I've ever experienced the problem, but the posts that I've read
that suggested this fix guess that it's a timing issue with excel.

xl has lots to do when you open the application and workbook. Sometimes, it
gets confused.

If the problem recurs, I've seen suggestions that go even further.

Private Sub Workbook_Open()
Application.OnTime Now, "Continue_Open"
End Sub

Then in a General module,

sub Continue_Open()
'your real code here
end sub
 

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

Back
Top