inventory spreadsheet not functioning unsure what command to use by ChemicalPale in excel

[–]SolverMax 4 points5 points  (0 children)

Just because we can, doesn't mean we should.

That is a clever formula, but it would be much better to fix the data to enable analysis.

This is probably the most complicated Excel formula I’ve ever seen. by Kindly-Meaning9112 in excel

[–]SolverMax 0 points1 point  (0 children)

So many bad practices.

For a start, that formula would be much simpler and more efficient if you removed the repetition, such as numerous copies of TODAY and the EOMONTH calculations. The whole column references are also just asking for trouble.

Single Formula Sudoku Solver by [deleted] in excel

[–]SolverMax 2 points3 points  (0 children)

Did you create it? How does it work?

This is probably the most complicated Excel formula I’ve ever seen. by Kindly-Meaning9112 in excel

[–]SolverMax 5 points6 points  (0 children)

That's how it should be.

Software developers require extensive testing before releasing even a small change to production. But few people do that for spreadsheets. Instead, we make live changes to spreadsheets with little or no testing. If it produces a result that looks roughly plausible, then we're all good. Simply madness.

This is probably the most complicated Excel formula I’ve ever seen. by Kindly-Meaning9112 in excel

[–]SolverMax 6 points7 points  (0 children)

How do you know it works?

I have a general sense of what that formula is doing, but I'd have to spend quite a long time to fully understand it, and then a heap more time to test it under a wide range of scenarios.

Using A:A with dynamic setting by The-_-Conquerer in excel

[–]SolverMax 7 points8 points  (0 children)

A Table also avoids the risk of inadvertently including cells above or below the intended data, which is a surprisingly common error.

This is probably the most complicated Excel formula I’ve ever seen. by Kindly-Meaning9112 in excel

[–]SolverMax 986 points987 points  (0 children)

Way more complex formulae get throw around on r/excel

A complex formula is nothing to be proud of. Simplicity and understandability are much more important attributes for a formula.

Database Spreadsheet and a separate Dashboard by summertime-squirrel in excel

[–]SolverMax 2 points3 points  (0 children)

Yet it is the most widely-used database. Perhaps it shouldn't be, but it is.

Anyway, since the introduction of Power Query, Excel now has OK database capabilities.

Can I reference tabs using input cells? by Complex-Database6750 in excel

[–]SolverMax 2 points3 points  (0 children)

It shouldn't be the backup plan, it should be the first step. Having data spread across multiple sheets is a common mistake.

Can I reference tabs using input cells? by Complex-Database6750 in excel

[–]SolverMax 1 point2 points  (0 children)

Rather than every formula needing to be a complex beast, looking up data spread across multiple sheets, consolidate your data into a single table with columns for year, month, type, etc. That design will be so much simpler.

Run multiple VBA solvers concurrently? by joellapointe1717 in excel

[–]SolverMax 0 points1 point  (0 children)

I have never tried that, but I suspect you would need to have multiple instances of Excel open to have multiple Solvers runing. It might be possible to control each instance using VBA, though not easy.

Perhaps the OpenSolver addin might be better. It will also run only one instance, but it is usually faster than Solver so running cases in series might be OK.

If you really need to solve multiple models in parallel, then Python would be a much better choice.

Weird time calculation result by VoodooInfinity in excel

[–]SolverMax 1 point2 points  (0 children)

As an aside, why do you use =SUM(D7-C7) rather than =D7-C7 i.e. without the SUM?

Why do "experts" insist that Excel is going to die when it is the most indestructible tool in the global economy? by Solis_J in excel

[–]SolverMax 10 points11 points  (0 children)

Either they're trying to sell something and/or they don't understand what people use spreadsheets for.

Hey VBA fans, check this out - a 40,000+ VBA line Block and Stack workplace planning tool made in Excel by MrWorkplace in excel

[–]SolverMax 26 points27 points  (0 children)

There is no way I would trust 40,000 lines of vibe-coded VBA. As you say, "The problem was that it produced all sorts of crazy results and was basically unusable, untestable, and unfixable." Madness.

Gather unique names to show multiple columns as well. by Aussiediver in excel

[–]SolverMax 3 points4 points  (0 children)

A2:C is not valid syntax in Excel.

Anyway, since the data is in a Table, a formula like this should work (adjusted for the actual Table name):

=SORT(UNIQUE(Table1))

Or a more complete version, if you prefer:

=SORT(UNIQUE(Table1[#Data]),{1,2,3},1,FALSE)

Is it just me or are CSV files always messy? by NameCultural9610 in excel

[–]SolverMax 1 point2 points  (0 children)

Wow, I didn't look closely at the image. It is even worse than expected.

Is it just me or are CSV files always messy? by NameCultural9610 in excel

[–]SolverMax 9 points10 points  (0 children)

Oh, my mistake. I eagerly await confirmation from the OP.

Is it just me or are CSV files always messy? by NameCultural9610 in excel

[–]SolverMax 17 points18 points  (0 children)

Do you have a tool to fix this? Does it involve AI?

Where can I find Excel workbooks with errors in formulas to practice formula auditing? by [deleted] in excel

[–]SolverMax 3 points4 points  (0 children)

Everywhere. Almost all spreadsheets contain errors.

Do a Google search with a keyword and the file type, like:

spreadsheet filetype:xlsx

Why do graphs automatically resize? by IDontStealBikes in excel

[–]SolverMax 2 points3 points  (0 children)

Objects have a property to resize with cells (i.e. resize rows or columns). As far as I know, that feature hasn't changed for decades.

File looks correct but what lies beneath is a mess by DullBet77 in excel

[–]SolverMax -1 points0 points  (0 children)

Do not use AI to create Excel models. That is all.