First let me start with explaining what does it mean to invoke VBA functions and procedures from strings. Then I will follow with an example. Lastly I will conclude this topic showing how you can add arguments. Invoke VBA functions and procedures by string name Normally you would invoke a VBA function or procedure like […]
Excel
Personal budget calculation in Excel
Today I decided to share something on the topic of managing your personal finances. Everyone should once in a while do a personal budget calculation. If you do not know how much you earn and spend it is a real challenge to manage your personal finances. How to estimate which car you can afford? How […]
Multithreading VBA – VBA worker threads via VBscript
Yet again I am approaching the subject of multithreading in VBA. This time I am coming with an interesting alternative to multithreading in VBA compared to the ones I presented previously. So again let me start by repeating that multithreading is possible in VBA but not in “native” VBA. What do I mean by “native”? […]
Multithreading VBA – VBA vs. VBscript vs. C#.NET
I you were looking for an end-to-end analysis of the topic of multithreading VBA. You have come to the right place! So lately I have been really wearing out the topic of multithreading in Excel in VBA. Hopefully you have already read through my three posts on the various methods of achieving multithreading capabilities in […]
Multithreading VBA using VBscript
Recently I published the post on using C#.NET to do multithreading in VBA – find it here: EXCEL: Multithreading in VBA using C#.NET. In that post I stated that multithreading is not possible natively in VBA only using external libraries e.g. COM/dll in C#.NET. In result of that post my attention was drawn to an […]