Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 70
Default problem when opening/closing worksheets

I always get this message when opening/closing this particular worksheet at
work:

Cannot find 'C:\XLAPPS\REPORTING\REPORTING.xlm'!modReporting.A uto_Close,
which has been assigned to run each time [Financial
Statements.xls]xlsMacroData is closed. Continuing could cause errors.
Cancel closing [Financial Statements.xls]xlsMacroData?

I just click on "NO" button and the worksheet works fine. I looked "Tools -
Macro" and there are no macros listed.

It is annoying to see this message every time. So would like to know how to
get rid of it. I am using Excel 2003.

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,939
Default problem when opening/closing worksheets

Code can hide in a number of different places. Right click on the XL icon in
the upper left hand corner of the Excel window beside the File menu option.
Select View Code. This takes you into the ThisWorkbook code module where I
suspect the offending code might be...
--
HTH...

Jim Thomlinson


"Tracy" wrote:

I always get this message when opening/closing this particular worksheet at
work:

Cannot find 'C:\XLAPPS\REPORTING\REPORTING.xlm'!modReporting.A uto_Close,
which has been assigned to run each time [Financial
Statements.xls]xlsMacroData is closed. Continuing could cause errors.
Cancel closing [Financial Statements.xls]xlsMacroData?

I just click on "NO" button and the worksheet works fine. I looked "Tools -
Macro" and there are no macros listed.

It is annoying to see this message every time. So would like to know how to
get rid of it. I am using Excel 2003.

Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 70
Default problem when opening/closing worksheets

No codes there either...

"Jim Thomlinson" wrote:

Code can hide in a number of different places. Right click on the XL icon in
the upper left hand corner of the Excel window beside the File menu option.
Select View Code. This takes you into the ThisWorkbook code module where I
suspect the offending code might be...
--
HTH...

Jim Thomlinson


"Tracy" wrote:

I always get this message when opening/closing this particular worksheet at
work:

Cannot find 'C:\XLAPPS\REPORTING\REPORTING.xlm'!modReporting.A uto_Close,
which has been assigned to run each time [Financial
Statements.xls]xlsMacroData is closed. Continuing could cause errors.
Cancel closing [Financial Statements.xls]xlsMacroData?

I just click on "NO" button and the worksheet works fine. I looked "Tools -
Macro" and there are no macros listed.

It is annoying to see this message every time. So would like to know how to
get rid of it. I am using Excel 2003.

Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default problem when opening/closing worksheets

The .xlm files are the old macro workbooks (pre xl95, but still work in later
versions (not sure about xl2007).)

If you're using xl2003 menus, try:
Format|Sheet|Unhide

It sounds like you may have an old macro sheet that calls this external macro.



Tracy wrote:

I always get this message when opening/closing this particular worksheet at
work:

Cannot find 'C:\XLAPPS\REPORTING\REPORTING.xlm'!modReporting.A uto_Close,
which has been assigned to run each time [Financial
Statements.xls]xlsMacroData is closed. Continuing could cause errors.
Cancel closing [Financial Statements.xls]xlsMacroData?

I just click on "NO" button and the worksheet works fine. I looked "Tools -
Macro" and there are no macros listed.

It is annoying to see this message every time. So would like to know how to
get rid of it. I am using Excel 2003.

Thanks!


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,939
Default problem when opening/closing worksheets

XL4 macro sheets can get hidden in ways that are not necessarily easy to find
IIRC. Here is some code that will unhide them if they exist...

Public Sub UnHideExcel4Worksheet()
Dim wks As Object

For Each wks In Application.Excel4MacroSheets
wks.Visible = xlSheetVisible
Next wks
Set wks = Nothing
End Sub

Paste this code anywhere the workbook and run it...
--
HTH...

Jim Thomlinson


"Dave Peterson" wrote:

The .xlm files are the old macro workbooks (pre xl95, but still work in later
versions (not sure about xl2007).)

If you're using xl2003 menus, try:
Format|Sheet|Unhide

It sounds like you may have an old macro sheet that calls this external macro.



Tracy wrote:

I always get this message when opening/closing this particular worksheet at
work:

Cannot find 'C:\XLAPPS\REPORTING\REPORTING.xlm'!modReporting.A uto_Close,
which has been assigned to run each time [Financial
Statements.xls]xlsMacroData is closed. Continuing could cause errors.
Cancel closing [Financial Statements.xls]xlsMacroData?

I just click on "NO" button and the worksheet works fine. I looked "Tools -
Macro" and there are no macros listed.

It is annoying to see this message every time. So would like to know how to
get rid of it. I am using Excel 2003.

Thanks!


--

Dave Peterson

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
OPENING AND CLOSING OF EXCEL 07 FILES hot-rod-3 Excel Discussion (Misc queries) 2 July 23rd 09 12:30 AM
Opening then later Closing an Excel file in VBA Richard Excel Discussion (Misc queries) 1 April 22nd 08 02:07 PM
Slow Opening & Odd Closing ohsix New Users to Excel 1 May 20th 07 05:28 PM
Closing a workbook upon opening another Dave New Users to Excel 3 January 3rd 07 09:57 PM
Error while opening/Closing excel Hari Excel Discussion (Misc queries) 0 November 17th 06 06:55 AM


All times are GMT +1. The time now is 02:23 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"