
u/EvolvedRevolution

Omgekomen man in rolstoel werd op spoor gezogen door passerende trein
nos.nlVreemd maar waar: de meest plausibele verklaring voor de opkomst van radicaal-rechts is ook de minst populaire
decorrespondent.nl'Nederland blies arrestatie Jos Leijdekkers in Afrika op laatste moment af'
nos.nlVier vragen over rapport gevaren sociale media: 'We staan op een keerpunt'
nos.nlNieuwe Bulgarenfraude nog groter dan gedacht: met ’eerst geld en controle achteraf’ blijft Belastingdienst kwetsbaar voor zwendel
telegraaf.nl'Dan neem je toch zelf een asielzoeker in huis?' Zo eenvoudig is dat niet
nos.nlSterven met verlaagd bewustzijn steeds meer de norm, roep om extra onderzoek
nos.nlSalaris nog steeds een taboe, maar als het aan Brussel ligt weten je collega’s straks wat je verdient
archive.phDorpsfeesten en festivals zuchten onder regeldruk: 'Komt steeds meer bij kijken'
nos.nlPolitie ontruimt deel winkelcentrum Leidschendam na run op horloge
nos.nlMotorrijder (27) raast met bijna 200km over Brabantse dijk, rijbewijs kwijt
nos.nlRIVM: alle naar Nederland geëvacueerde opvarenden Hondius testen negatief
nos.nlVan Weel praat met collega Sierra Leone over uitlevering crimineel Jos Leijdekkers
nos.nlVertrouwen in Haagse politiek op absoluut dieptepunt.
Uitbreiding windmolens op land valt bijna stil, door onduidelijke regels
nos.nlPolitie vindt 340.000 euro cash, drugs en wapens in slaapkamer Zutphenaar (23)
telegraaf.nlAmerikaanse kreeft doodt alles in de sloot: 'We moeten vangen, vangen, vangen'
nu.nlHow to deal with a bulky spreadsheet that is starting to hit the limits of Excel?
Hello all,
I have been venturing on quite the Excel journey the past year or so. I made a corporate spreadsheet that is approaching 500k formulas and that is starting to get serious speed issues at this point. It is 2026, so I conversed with ChatGPT several times regarding the speed issue, but realized I am way better off asking the experts here anyways.
What is the problem
So, my spreadsheet imports flat databases with specific information regarding objects that need further analysing. The imported flat databases run from say A tot CC or something, from which I probably draw about 12-15 datafields that are used for further analysis. It 'may' be more in the future. Afterwards, said data gets 'enriched' (manually) by things that aren't in the database, also because said data needs a human eye that cannot be automated. So far, so good.
Right now, each object gets analysed from several different angles. As it stands, my spreadsheet runs from A until NA or something on the Formula Page. Many columns receive data from preceding columns, that are in the turn the result of many (slightly complex) logical IF or IFS tests, many of which are nested 3 or 4 deep. Often, they work in conjunction with X.LOOKUP to retrieve values, as the columns on the formula page are not equal.
For example: A until BC on the Formula Page may analyze 150 objects, BD until DD may analyse 100 objects (from the same dataset, so narrower), and so forths. Thus a lot of X.LOOKUP is required, also because the first 'block' comes up with values that need to be found with X.LOOKUP. Also, values need to be retrieved from the flat database 'import' page with X.LOOKUP. Finally, X.LOOKUP is an insurance compared to FILTER, as I am not fully convinced that empty values in the flat database always contain a space (" ").
To get to the point
I use many IF, IFS, AND, and if need be, OR, formulas. Thinks: tens of thousands, probably in excess of 100k.
These are compounded with X.LOOKUP, or X.LOOKUP gets used copiously without those. Here too, think tens of thousands.
These formulas are - as much as possible - in array format, even though I find it controversial to do that as I consider how it can create a chain of updates throughout the spreadsheet.
'Dependencies' is the name of the game, with one object receiving many possible alterations / adjustments due to manual input data, for which the spreadsheet needs to provide.
Right now, when I update a value, it may take up to 4 seconds to update the spreadsheet, which is already beyond the annoyance point for me. This leads me to these (hopefully) simple questions:
Is it smart to use array formulas, knowing that each thing I change should only impact that one object line (for example, row 488) and none other? It is important to mention that object 1 does not influence object 488, or any other. Any manual data field only effects the object in the row it is in. In my mind, array formulas do not make sense in that regard, as it can result in a cascade of updates, but apparantly array formulas are 'way more efficient'.
Is use of a VBA library the way to go to reduce lag and create more of an instant spreadsheet again? I am not able to code in VBA yet, but I am in the slow process of learning it regardless.
Alternatively: should I use LET whenever a repeated lookup is needed in the same formula?
Really looking for to your answers!