Hi,
factually this is a question in two parts…
1. does anyone know a workaround which allows you to launch Excell’s solver feature for a problem with > 100 variables?
For example, I should want to use the Solver for determining a maximum (after calculation of a number of variables (among which cost and gain for this parameter), sums, totals, with some restrictions) based on a grid with 5 columns * 100 rows of cells, all having values = 0 / 1.
2. As an alternative, I’m thinking about using VBA to populate all cells with 0/1-values and log the result from those calculations (trying this out for all possible combinations) in search for the maximum I’m looking for. Is it necessary to refresh Excell after having populated the cells BEFORE reading the value from the calculated cell into memory, or is this refreshing done automatically? (I realise this isn’t the most time efficient way, but I don’t immediately see an alternative…)
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Solver with > 100 variables (All)
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Solver with > 100 variables (All)
- This topic has 18 replies, 4 voices, and was last updated 21 years, 7 months ago.
AuthorTopicWShasse
AskWoody LoungerOctober 30, 2003 at 12:44 am #395805Viewing 3 reply threadsAuthorReplies-
WSHansV
AskWoody Lounger -
WShasse
AskWoody LoungerOctober 30, 2003 at 1:36 am #737276Let’s assume that this isn’t a problem
(or is this not a wise assumption…? I assume you can use always use the time limit option, let it ‘roll’ overnight and see what you can get…)((Honestly, some( wishful )thin(kin)g(?) makes me still hope I can solve this problem with excel and not with bare programming
.
In the programming option I mentioned, I could reduce the number of ‘trials’ consistently by validating each possible combination to some restrictions first before I populate the excell cells with is. (E.g. one of the restrictions is that each set of 100 ‘bits’ should contain exactly 30 ‘ones’.) But even then, I assume it would still require considerable time.)) -
WSHansV
AskWoody LoungerOctober 30, 2003 at 1:53 am #737278Even with imposing extra conditions, the number of possibilities remains huge. Don’t think in terms of days, or months, or even years.
There are advanced methods involving algebraic geometry for solving this kind of problem in less time (relatively speaking), but I doubt that Excel or VBA is the tool of choice for these methods. The applied mathematics department of a university near you may be able to tell you more about this.
But it would be more useful to see if you can rephrase the problem to involve fewer unknowns.
-
WShasse
AskWoody LoungerOctober 30, 2003 at 2:09 am #737288OK, Hans,
as the situation I’m dealing with is more kind of a hobby (it’s about finding a ‘most successfull selection’ out of a poole of many candidates), I think I’ll have to try other ways (e.g. using Access in several steps, like e.g. automatically generating a list of all possible combinations by making a query based on twice the same table (or something alike) without using a join, then launch further calculations on each combination, sort the results, etc, or something…) or, more obviously, accept my defeat(…) Thanks for your time!
-
WSshades
AskWoody LoungerOctober 30, 2003 at 1:47 pm #737501FWIW, about two years we were looking at a real-world problem that we had narrowed down to 24 variables to look at correlation. Then we presented this to some statisticians. They wouldn’t even consider doing this on Excel or even Access. They used dedicated programs for dealing with that many variables (unfortunately, I can’t remember what programs they used).
-
WSshades
AskWoody LoungerOctober 30, 2003 at 1:47 pm #737502FWIW, about two years we were looking at a real-world problem that we had narrowed down to 24 variables to look at correlation. Then we presented this to some statisticians. They wouldn’t even consider doing this on Excel or even Access. They used dedicated programs for dealing with that many variables (unfortunately, I can’t remember what programs they used).
-
-
WShasse
AskWoody LoungerOctober 30, 2003 at 2:09 am #737289OK, Hans,
as the situation I’m dealing with is more kind of a hobby (it’s about finding a ‘most successfull selection’ out of a poole of many candidates), I think I’ll have to try other ways (e.g. using Access in several steps, like e.g. automatically generating a list of all possible combinations by making a query based on twice the same table (or something alike) without using a join, then launch further calculations on each combination, sort the results, etc, or something…) or, more obviously, accept my defeat(…) Thanks for your time!
-
-
WSHansV
AskWoody LoungerOctober 30, 2003 at 1:53 am #737279Even with imposing extra conditions, the number of possibilities remains huge. Don’t think in terms of days, or months, or even years.
There are advanced methods involving algebraic geometry for solving this kind of problem in less time (relatively speaking), but I doubt that Excel or VBA is the tool of choice for these methods. The applied mathematics department of a university near you may be able to tell you more about this.
But it would be more useful to see if you can rephrase the problem to involve fewer unknowns.
-
-
WShasse
AskWoody LoungerOctober 30, 2003 at 1:36 am #737277Let’s assume that this isn’t a problem
(or is this not a wise assumption…? I assume you can use always use the time limit option, let it ‘roll’ overnight and see what you can get…)((Honestly, some( wishful )thin(kin)g(?) makes me still hope I can solve this problem with excel and not with bare programming
.
In the programming option I mentioned, I could reduce the number of ‘trials’ consistently by validating each possible combination to some restrictions first before I populate the excell cells with is. (E.g. one of the restrictions is that each set of 100 ‘bits’ should contain exactly 30 ‘ones’.) But even then, I assume it would still require considerable time.)) -
Ronny
AskWoody Lounger -
Ronny
AskWoody Lounger
-
-
WSHansV
AskWoody Lounger -
Ronny
AskWoody LoungerOctober 30, 2003 at 2:47 pm #737535I’m a statistican so let me offer some input from that viewpoint. Your brief description sounds like you are trying to find the one best solution, that is, you want to perform linear programming. Since you want to limit the solutions to 0/1, you are really doing a special case of LP called integer programming. There is a bunch of software out there that can handle these types of problems and work them very fast. In fact, in the world of LP, 100 variables is not that big of deal. It would be foolish for you to try and reinvent the wheel using any Office program.
I would suggest that you look into specialized LP software. Personally, I use POM for Windows, not because it great, but because it came free with one of the textbooks I teach from. It being designed for college students, I doubt it could handle 100 variables but there are lots out there that can.
Ronny
-
Ronny
AskWoody LoungerOctober 30, 2003 at 2:47 pm #737536I’m a statistican so let me offer some input from that viewpoint. Your brief description sounds like you are trying to find the one best solution, that is, you want to perform linear programming. Since you want to limit the solutions to 0/1, you are really doing a special case of LP called integer programming. There is a bunch of software out there that can handle these types of problems and work them very fast. In fact, in the world of LP, 100 variables is not that big of deal. It would be foolish for you to try and reinvent the wheel using any Office program.
I would suggest that you look into specialized LP software. Personally, I use POM for Windows, not because it great, but because it came free with one of the textbooks I teach from. It being designed for college students, I doubt it could handle 100 variables but there are lots out there that can.
Ronny
Viewing 3 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
My Simple Word 2010 Macro Is Not Working (Awaiting moderation)
by
mbennett555
6 hours, 39 minutes ago -
Office gets current release
by
Susan Bradley
11 hours, 23 minutes ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
1 day, 3 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
12 hours, 26 minutes ago -
Stop the OneDrive defaults
by
CWBillow
1 day, 4 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
1 day, 14 hours ago -
X Suspends Encrypted DMs
by
Alex5723
1 day, 16 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
1 day, 17 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
1 day, 17 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
1 day, 18 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
1 day, 6 hours ago -
Enabling Secureboot
by
ITguy
1 day, 13 hours ago -
Windows hosting exposes additional bugs
by
Susan Bradley
2 days, 2 hours ago -
No more rounded corners??
by
CWBillow
1 day, 22 hours ago -
Android 15 and IPV6
by
Win7and10
1 day, 11 hours ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
2 days, 14 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
2 days, 17 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
2 days, 11 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
3 days ago -
May preview updates
by
Susan Bradley
2 days, 12 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
2 days, 3 hours ago -
Just got this pop-up page while browsing
by
Alex5723
2 days, 16 hours ago -
KB5058379 / KB 5061768 Failures
by
crown
2 days, 13 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
1 day, 16 hours ago -
At last – installation of 24H2
by
Botswana12
3 days, 16 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
13 hours, 55 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
4 days, 4 hours ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
2 days, 2 hours ago -
Limited account permission error related to Windows Update
by
gtd12345
4 days, 17 hours ago -
Another test post
by
gtd12345
4 days, 18 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.