MXL4: Macro Error when You Run a Recorded Solver MacroLast reviewed: February 2, 1998Article ID: Q100934 |
The information in this article applies to:
SYMPTOMSWhen you run a recorded macro that includes commands from the Microsoft Excel Solver, you may receive a macro error in the first cell of the macro.
CAUSEThis macro error occurs because, when the macro is recorded, the name of the Solver Add-in macro is not enclosed in single quotation marks.
WORKAROUNDTo avoid this macro error, manually remove the filename from each line of recorded macro code.
ExampleIf your macro code looks like the following
=Solver Add-in!SOLVER.OK(!$A$3,3,25,(!$A$2)) =Solver Add-in!SOLVER.SOLVE() =RETURN()remove the filenames, so that the macro resembles the following:
=SOLVER.OK(!$A$3,3,25,(!$A$2)) =SOLVER.SOLVE() =RETURN() REFERENCES"User's Guide 2," version 4.0, pages 216-222 "Function Reference," version 4.0, pages 410, 412
|
Additional query words: 4.00 XL4
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |