personal workbook keeps opening. How do i stop it

cwilliams96

Board Regular
Joined
Jul 27, 2003
Messages
186
I recorded a few macros. and saved them in my personal workbook. Each time i open a spreadsheet, even if it doesnt contain macros, the workbook opens, but so does a personal workbook. This never happened before.

Any ideas how to stop it, or why does it do it?
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
because the personal.xls file is in your XLStart folder, whcih contains files that are automatically opened every time you start excel.

you have to move your personal.xls file out of this folder if you dont want it to open every time you start excel.

one other option though is to add the following AUTO_OPEN maco to your personal.xls file, so that when it opens, it is automatically hidden in the background and you can still have acess to the macros in the file.

Code:
Sub Auto_Open()
    Windows("Personal.xls").Visible = False
End Sub
 
Upvote 0
I recorded a few macros. and saved them in my personal workbook. Each time i open a spreadsheet, even if it doesnt contain macros, the workbook opens, but so does a personal workbook. This never happened before.

Any ideas how to stop it, or why does it do it?

I was having the same issues and it was getting very irritating. I think I just fixed it by disabling a date picker app that I had enabled as an add-in. Found it by accident but it seems to be working now. I would check any Add-In that you have checked.

Good Luck. I know it's very frustrating, I've been dealing with it for two months now on a daily basis.
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,423
Members
448,961
Latest member
nzskater

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top