Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
Put Value From Solver In Memory
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Gary''s Student, post: 6262243"] A good place to store stuff like this is in a static array. If we insert: Dim memory(100) as Double Dim Cntr as Integer At the very top of the module (above the subs ), then in the subs we can put: Cntr=Cntr + 1 memory(Cntr) = Range("E26").value This will keep a "history" of the solutions. [/QUOTE]
Verification
Post reply
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
Put Value From Solver In Memory
Top