Error when opening Excel workbook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I open this workbook I get the following message and I am unable to
locate the cause any help would be greatly appreicated

Cannot find 'F:\users\mnajjar\misc\lbo.xlm! Auto_Open, which has been
assigned to run each time [Book1.xls]IS is opened.

I have looked at any links and deleted them.

Not sure what else I can do.

Thanks in advance for any help on this

Deb
 
If it's only that one workbook that does this, and you've killed all links,
then maybe you have a "Workbook_Open" macro in your "ThisWorkbook" module.....

Vaya con Dios,
Chuck, CABGx3
 
Can you tell me where to find this

and yes it only happend to this workbook

CLR said:
If it's only that one workbook that does this, and you've killed all links,
then maybe you have a "Workbook_Open" macro in your "ThisWorkbook" module.....

Vaya con Dios,
Chuck, CABGx3



dcournoyer said:
When I open this workbook I get the following message and I am unable to
locate the cause any help would be greatly appreicated

Cannot find 'F:\users\mnajjar\misc\lbo.xlm! Auto_Open, which has been
assigned to run each time [Book1.xls]IS is opened.

I have looked at any links and deleted them.

Not sure what else I can do.

Thanks in advance for any help on this

Deb
 
Open your workbook
hit alt-f11 (to get to the VBE)
hit ctrl-r (to view the project explorer--like windows explorer)

You'll see something like:
VBAProject (book1.xls)
Click on it to select it

Hit the asterisk (*) on the numeric keypad to expand all the levels.
You'll see the ThisWorkbook module.

===
But if this is happening with book1.xls and book1.xls isn't important to you--it
isn't a real workbook, you could just delete that file.

Back to excel.
with book1.xls open and the active workbook
file|properties|General tab
You'll see the location of the file.

If it's truncated, you could use this, too:
Put this formula in any cell:
=cell("filename",a1)

And note the location.

Close the file, open windows explorer, traverse to that folder and delete it.


Can you tell me where to find this

and yes it only happend to this workbook

CLR said:
If it's only that one workbook that does this, and you've killed all links,
then maybe you have a "Workbook_Open" macro in your "ThisWorkbook" module.....

Vaya con Dios,
Chuck, CABGx3



dcournoyer said:
When I open this workbook I get the following message and I am unable to
locate the cause any help would be greatly appreicated

Cannot find 'F:\users\mnajjar\misc\lbo.xlm! Auto_Open, which has been
assigned to run each time [Book1.xls]IS is opened.

I have looked at any links and deleted them.

Not sure what else I can do.

Thanks in advance for any help on this

Deb
 
Fixing Excel Error Cannot find F:\USERS\username\MISC\LBO.XLM!Auto_Open

Fixing Excel Error on opening Excel File reading:
"Excel File Cannot find F:\USERS\username\MISC\LBO.XLM!Auto_Open"
This bug is caused by a name reference to an an external macro file and is resolved by locating the name reference and deleting it. I have personally seen this bug so I speak from first hand experience.

Best regards,

Jake

Courtesy of
Excel Expert UK
http://www.Excel-Expert.co.uk
http://www.OfficeSoftworks.co.uk
http://www.OfficeSoftworks.com
 
Last edited:
Back
Top