personal.xls problem

  • Thread starter Thread starter =?iso-8859-1?B?QW5kcuk=?=
  • Start date Start date
?

=?iso-8859-1?B?QW5kcuk=?=

I was working with macro's yesterday now any excel
workbook i open also opens the file personal.xls. How can
I stop this from opening?

A
 
If there is a Personal.xls file in the correct folder, then Excel will open
it. However, this workbook normally open in hidden mode.
Try Window|Hide and close Excel. Does Personal.XLS show its face?

Best wishes
 
With Personal as the active workbook, use Tools|Macro|VisualBasic Editor
In the Project window (left of screen), locate Personal.XLS and under it
click ThisWorkbook.
In the macro window (main window) enter this code

Private Sub Workbook_Open()
Windows(ThisWorkbook.Name).Visible = False
End Sub

Close VBA editor, save Personal.xls
Try opening it again.

--
Bernard Liengme
www.stfx.ca/people/bliengme
remove CAPS in e-mail address


The hide option is not available, it is grayed out.

A.
 

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