top of page
Blog posts
Search
Creating sentences and lists from a series of items
Often, especially when creating text to show to a user in a dialog, I have a Collection or Array of Strings that I want to use to inform the user of some information. Code to compile those Strings into "clean" user-friendly text can be a pain to write ... for example, making sure the penultimate and last items are delimited by "and" instead of a comma especially when you don't know how many Strings will be included from the off.
4 days ago2 min read


A better collection in VBA
Fed up with arrays and Collections (and Dictionarys and ArrayLists)? Try List, a better collection for VBA.
Sep 12, 20236 min read


Sorting Objects in VBA
Sorting arrays of Objects in VBA - any Objects, Worksheets, Documents, Slides etc or Objects defined by your own custom Class Modules
Jun 15, 20234 min read


Sorting Strings in VBA
This is an implementation of the 'merge sort' algorithm - one of the most efficient sorting algorithms. It uses what's known as a 'divide...
Jun 13, 20232 min read


Articles: Blog2
bottom of page