ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Active Content/Macros (https://www.excelbanter.com/excel-discussion-misc-queries/232844-active-content-macros.html)

Canon

Active Content/Macros
 
Excel 2007
I have a worksheet that used to auto-number itself whenever I opened it and
gave permision. Now I get the message: Run-time error '9': subscript out of
range.
How can I fix this?

Dave Peterson

Active Content/Macros
 
That error indicates that something you used in your code doesn't exist anymore
(or has been renamed).

It could be something like:
worksheets("Sheet3").range("A1").value = "hi"
And sheet3 has been renamed or deleted.

Or
worksheets(3).range("A1").value = "hi"
and there aren't 3 worksheets.

But it's gonna be difficult to help diagnose your problem since you didn't share
the code.

If you have trouble debugging, then post the relevant portion and indicate which
line is causing the trouble.





Canon wrote:

Excel 2007
I have a worksheet that used to auto-number itself whenever I opened it and
gave permision. Now I get the message: Run-time error '9': subscript out of
range.
How can I fix this?


--

Dave Peterson

joel

Active Content/Macros
 
You have a macro running that is creating an error. You need to post which
line is being highlighted when the error occurs. If there is no line being
highlighted then look in the Macros (Alt F11 from worksheet) for the lines
that have ON ERROR and put a single quote at the begining of the line so the
code will stop and highlight the line where the problem is occuring.

"Canon" wrote:

Excel 2007
I have a worksheet that used to auto-number itself whenever I opened it and
gave permision. Now I get the message: Run-time error '9': subscript out of
range.
How can I fix this?



All times are GMT +1. The time now is 11:17 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com