Awesome VBA

Visual Basic for Applications (VBA) is an implementation of
Microsoft’s event-driven programming language Visual Basic 6.0 (VB6)
built into most desktop Microsoft Office applications.
This is a curated list of Libraries and Resources for both VBA and
VB6.
Because of the nature of VBA, many libraries do not work on all
Operating Systems, in all Office Applications or on all
architectures(x64/x86), therefore we use symbology. Read more about this here.
Contents
Frameworks
stdVBA -
A framework containing numerous classes for automation and utility.
Focuses on code compactness and long-term maintainability.
VbCorLib - A
framework which brings many powerful .NET classes to VBA/VB6.
Hidennotare - A
framework by Japanese author RelaxTools. Contains numerous classes,
interfaces and forms.
Libraries
JSON
VBA-FastJSON -
Fast, cross-platform, native json parser and serializer. Memory
efficient (non-recursive), RFC 8259 compliant, UTF8 support
VBA-JSON - JSON
conversion and parsing.
mdJSON
- JSON library with dot-notation for extracting paths.
JSONBag
- Uses shebang notation to extract keys from JSON strings. Can also
build JSON with this library.
- From Frameworks:
In stdVBA find
stdJSON - As above.
CSV
VBA-CSV-interface
- Powerful, fast and comprehensive RFC-4180 compliant CSV/TSV/DSV data
management library.
- From Frameworks:
In Hidennotare
find csvWriter and csvReader.
XML
VBA-XML - XML conversion
and parsing.
ZIP
Excel-ZipTools
- Parse, read, and extract data from, Zip files. Written in pure
vba.
vbaSquash
- Compress and decompress files and byte arrays using the built-in
cabinet.dll functions available on Windows 8+. Provides
access to compression algorithms MSZIP,
XPRESS, XPRESS_HUFF, and
LZMS.
PDF
vbaPDF - VBA code for
simple modification of PDF files (read in, combine, write out).
Data Structures
Array-List
Better
array - An array class providing features found in more modern
languages.
- From Frameworks:
In
VbCorLib find ArrayList - As above.
In stdVBA find
stdArray - As above. Also includes methods to search the
array or perform checks from a callback.
Dictionary
VBA-FastDictionary
- Fast, cross-platform, native Dictionary. Replacement for scripting
dictionary.
VBA-Dictionary -
A dictionary object which stores key-value pairs.
VBA-ExtendedDictionary
- A dictionary object using Scripting.Dictionary but exposes some
additional useful functionality.
cHashList
- Simple, Fast and lightweight HashList class with no use of Win32 API.
Requires string keys however.
CollectionEx
- Extends the default VBA(/VB6) collection with methods to retrieve and
check for key existence.
clsTrickHashTable
- A hash table using machine code injected at runtime. Full replacement
for scripting dictionary, with bonus features.
- From Frameworks:
In
VbCorLib find HashTable - As above.
Math libraries
VBA-Math-Objects
- A matrix and vector library.
VBA
Float - An utility to perform computations over big integers and
rational numbers with thousands digits.
SQL Library - An
OOP SQL Library for psql, mssql, mysql databases.
VBA-MemoryTools
- Provides an ultra-fast, copy memory alternative.
Safe
Subclassing - Provides the ability to subclass Excel/Word/PowerPoint
window or Userforms to perform further automation. In the later threads
there is also an example for subclassing other windows from other
applications.
Calling private
module functions - You can also check out Greedo’s
code review.
Universal
DLL Calls - A library which can be used to call functions of any
function pointer, DLL or object in both STDCALL and
CDECL.
vbInvoke -
Application.Run but COM based and can call private module
methods.
VBA
state-loss callback - A crash free detector for VBA state-loss.
State loss can occur when: Someone clicks end in an
unhandled error; You click the VBA stop button; You enter design mode;
Application exits.
vb2clr
- Use C# from VBA using the .NET CLR runtime.
- From Frameworks:
In stdVBA find
stdCOM - A one stop shop for COM automation, from invoking
interfaces by offsets to extracting type information.
In stdVBA find
stdReg - Registry automation from searching to setting
values.
Parsers / Interpreters
vba-regex - A native
regex expression parser and runtime engine.
VbPeg - A
parser generator for VBA. Converts PEG grammar like this
into VBA
code like this. Very useful if your implementing a new programming
language in VBA. Wqweto has also included some math expression parsers
as tests.
Volpi’s
Math Expression Parser - A fast math expression parser. Doesn’t
allow calls to objects, no callstack.
VBA Expressions
- A powerful string expression evaluator focussed on mathematics and
data processing.
ClooWrapperVBA -
Execute OpenCL from VBA, using either the GPU or CPU.
- From Frameworks:
In stdVBA find
stdLambda - Full programming language including object
manipulation, call stack, etc.
VBA-Web - Connect VBA,
Excel, Access, and Office for Windows and Mac to web services and the
web.
VBA-WebSocket -
Microsoft example code for a WebSocket client which can be used in
conjunction with an echo server. There is also a class and
an async
version built by the discoverer of the microsoft code.
vbAsyncSocket -
Simple and thin WinSock API wrappers for VB6 loosely based on the
original CAsyncSocket wrapper in MFC.
Edge
Automation - Automate Chromium Edge using devtools protocol. GitHub
backup here.
Chrome
Automation (via devtools protocol) - Automate Chrome using chrome
devtools protocol.
SeleniumVBA - Drive
selenium webdriver directly from VBA. If you don’t have the driver
installed, the library will attempt to download it for you and run it.
However AV may restrict the running of this process.
webxcel - A webserver
which runs a RESTful backend. The creator also made an article
on how it works on dev.to.
- From Frameworks:
In stdVBA find
stdHTTP - Connect to and query web services.
Rubberduck
- An open-source COM add-in project that integrates with the Visual
Basic Editor to add modern-day features to the familiar IDE. Works in
VBA6, VBA7.x (x86/x64), and yes, in VB6 too!
VBA-IDE-Code-Export
- Addin contains a code importer and exporter for use with git (or any
VCS).
- RibbonX -
AndyPope’s Visual Ribbon Editor.
Custom UI
XML Editor - Addin for directly adding, editing and validating
ribbon XML (Excel 2010+).
MZ-Tools -
VBE addin providing development tools.
VbPeg - A
parser generator for VBA. Converts PEG grammar like this
into VBA
code like this. Very useful if you’re implementing a new programming
language in VBA.
VBA
Resource File Editor - Store other files inside your
excel/word/powerpoint files for later use with this handy tool.
vbRichClient - An
external client full of useful libraries.
vbWatchDog -
vbWatchdog hacks the VBA runtime to provide module name,
procedure name and line number where error occurred.
DLL
Function Viewer - Allows the export of function names from
DLLs.
Accessibility
Inspector - An inspector/explorer for accessibility in applications.
Useful for automation.
Running
Object Table Inspector - An inspector for the running object table
(ROT), a table of global running COM objects which can be obtained.
Clipboard
Inspector - Allows inspection of data held in the clipboard. Useful
for reverse engineering clipboard usage in other applications.
Registry
Inspector - Allows inspection of the win32 registry. Equivalent of
regedit basically, but implemented entirely in VBA.
JSON
Inspector - An inspector for JSON data, can be called on demand too
as a dev tool for inspecting API responses.
Examples
- VBSpeed - The Visual
Basic Performance Site - focus on VB6 but transferrable across to
VBA.
UI Ribbon
- Ron
de Bruin - Ribbons/QAT - A leading resource for information/samples
on developing custom ribbons and context menus.
- Office
MSO Icons - Ribbon icons can often use one of the 1500 (3 pages on
this site) MSO icons wich pre-exist in Office applications.
Low level examples
Iterating
the ROT - An example of iterating the Running Object Table (ROT) to
find Excel Workbook instances.
Iterating
Excel Instances via IAccessible - In some cases Excel instances
aren’t registered to the ROT. The Excel application however implements
IAccessible, which not only can be used to automate the UI,
but can also be used to obtain the Excel Instance from a hwnd.
Excel
Screen Reader - Not only an example of UI Automation, but also an
example of using SAPI to do text to speech.
AddIns
MenuRighter -
MenuRighter is an Excel addin that lets you modify right-click menus.
You can add almost any control found in other right-click menus or Excel
2003’s “classic” menus.
Sam Rad’s
DatePicker - Visually impressive and professional DatePicker addin
for Excel. Worksheet only / cannot be used with userforms.
Excel Name Manager
- An enhanced Name Manager replacement by JKP, Charles Williams and
Matthew Henson. 2025 Finalist in the Best Microsoft Excel Add-In
category.
Excel
Flex Find - An enhanced Find-And-Replace replacement by JKP that
exends the search scope to objects and VBA code.
Word
VBA Syntax Highlighter - Custom built Syntax Highlight tool for Word
Documents.
Games / Fun projects
xlStudio - A
DAW for Microsoft Excel. Also check out the awesome video.
Cellivization - A cool
RTS-like game created in Excel. Also check out the awesome video.
Arkanoid
- Arkanoid, a retro arcade game, built in Excel. On some machines it
runs faster than others.
Battleships
Pacman
ExcelCommodroid
- Commodore computer loader using MS Excel on Windows. VBA7 only.
oletools - Python tool
which can be used to decode VBA P-Code (VBA’s intermediate
language).
twinBasic - A VBA compatible parser,
evaluator and compiler.
vscode-vba -
Extension that adds VBA editor support to Visual Studio Code.
VBA
Pro - VSCode Extension that adds enhanced VBA support based on
Language Service Protocol. The source is also on GitHub.
VBA Build - Github
action to automatically build a VBA project on commit.
VBA Project Compiler - A
python library which can be utilised to compile VBA projects. There is
also a built-in Excel addin
generator made by the same author! You can see a list of related
projects by the author here.
Style Guides
- Thunder
- The birth of Visual Basic - A little article about the birth of
VB7/VBA.
- My
First Bill Gates Review - Joel Spolsky, program manager for the
Excel team, recounts his first Bill Gates review. Joel got numerous
features added e.g.
IDispatch, Variant,
For each and With. It also discusses the
dreaded Date bug ported to Excel from Lotus 123.
- Ruby,
EB and DLL composition - Translated copy of VBStreets
article created by Russian VBer
Хакер. Details the
composition of the VB6 and VBA dlls in amongst the history of the
language.
- PCode
Internals - VBA is compiled to PCode. Understanding the lower level
P-Code is a topic of heavy interest and research.
- How many
lines of code in EB - Untranlated article by Russian VBer
Хакер which estimates the number of lines of code in
VB6/VBA.
- SAFEARRAYS
- The internal structure of arrays.
- Articles by
Sancarn - Various articles written by Sancarn about VBA including,
performance, actual issues with VBA etc.
Resources
Win32 API Resources
- JKP API
Declarations
- Microsoft
Office Code Compatibility Inspector - The Microsoft Office Code
Compatibility Inspector was designed by Microsoft to troubleshoot
compatibility issues with VBA code as when upgrading Office from 32-bit
to 64-bit. MS has not maintained a link to the software for download
from its servers, though versions of it are apparently available on the
internet.
VB6 / VBScript
- Planet
Source Code - A code repository GitHub which holds copious amounts
of code. The site was closed down in 2023, but fortunately all VBA/VB6
samples were archived on GitHub today. Possibly not the entire
collection (?) of projects/source code that was previously available at
the PSC website.
- vbAccelerator
Archive - Archived copy of vbAccelerator site (articles, source
code, etc.) that disappeared in 2015, reappeared in 2018, and anyone’s
guess what’s going to next… Primarily VB6, but useful VBA resource.
Websites
- Excel
Development Platform Blog - Blog dealing with advanced
topics/VBA.
- MSDN
VBA Documentation
- MS-VBAL
Language Spec
- Ron
de Bruin - Simple-Intermediate topics. Note: Ron has archived all
these sites, it will not be updated, and some information is out of
date, yet it is still an incredible resource for VBA.
- Bytecomb VBA
Reference - Intermediate-advanced topics.
- Chip Pearson’s website -
Great resource for beginners-intermediate.
- VBA for smarties
- A great reference to numerous data structures and mechanics.
- Rubberduck Blog -
Intermediate-Advanced topics.
Slipstick -
Website of Diane Poremsky (MVP) with focus on Outlook and VBA.
TechnicLee - Outlook blog,
many examples including code variations depending on user request.
PowerPoint VBA - A site devoted to
teaching VBA through making games in PowerPoint.
- MS KB
Archive - Massive archive of vb6/vba problems, solutions and
tutorials.
- Sancarn’s
vba-articles - Sancarn’s articles on various topics related to
VBA.
No Longer Set -
Access + VBA site of Microsoft MVP Mike Wolfe. Provides weekly updates
on development of TwinBasic.
Isladogs on
Access - Access + VBA site of Microsoft MVP Colin Riddington.
Excellent resource with VBA projects in Access VBA.
DevHut - Access
+ VBA site of Daniel Pineault. Publishes series of deep-dive articles
into various uses of VBA. Companion site to Youtube account.
Books
- Hard Core
Visual Basic - An advanced programmer’s guide to the new 5.0 version
of Visual Basic. Includes a core set of utilities, shortcuts, and
solutions to problems to achieve a wide range of functional programs. A
hard book also exists. Also check out the Comments and
corrections.
- The
VBA Developer’s Handbook - Write bulletproof VBA code for any
situation. This book is the essential resource for developers working
with any of the more than 300 products that employ the “Visual Basic for
Applications” programming language. Hardbacks also available
elsewhere.
- Advanced
Visual Basic 6 - Power Techniques for Everyday Programs Matthew
Curland. Hardbacks also available elsewhere.
- Professional
Excel Development - In this book, four world-class Microsoft® Excel
developers offer start-to-finish guidance for building powerful, robust,
and secure applications with Excel. Hardbacks also available.
Excel
VBA Programming For Dummies - It′s time to move to the next
level—creating your own, customized Excel 2010 solutions using Visual
Basic for Applications (VBA).Using step–by–step instruction and the
accessible, friendly For Dummies style, this practical book shows you
how to use VBA, write macros, customize your Excel apps to look and work
the way you want, avoid errors, and more.
Power
Programming with VBA - Excel 2019 Power Programming with VBA is
fully updated to cover all the latest tools and tricks of Excel 2019.
Encompassing an analysis of Excel application development and a complete
introduction to Visual Basic for Applications (VBA), this comprehensive
book presents all of the techniques you need to develop both large and
small Excel applications.
- (E-Book) VBA
beginners
- (E-Book) Excel VBA
beginners
YouTube
- Excel Macro
Mastery - Paul Kelly (MVP) - excelmacromastery.com.
- Sigma Coding -
Large catalogue of tutorials - beginner through to advanced. Delves into
interesting areas of VBA not explored by other content creators.
- WiseOwl’s
VBA tutorials - Great all-round resource for VBA. Perfect
introduction for beginners. In-depth lessons into all aspects of VBA.
Huge playlist that covers most types of VBA.
VBA A2Z - Many tutorials,
some paid content. Good array of interesting and different topics -
in-depth tutorials into different parts of VBA, with some .NET/VSTO
videos. Strong focus on UI development.
- Excel VBA Is
Fun
- Excel for
Freelancers - Hands-on tutorials to developing specific applications
from beginning through to end. All levels.
- Leila Gharani -
Office-wide focus - useful for beginners.
Get to know VBA - Some great
applications presented and created with VBA.
D
Pineault - Tech, Programming and more - Youtube channel of Daniel
Pineault. Companion channel to DevHut site.
Forums
- Reddit - Daily VBA Q&A.
Occasional Pro-Tip sharing and Show & Tell library publishing.
- Stack
Overflow - A great place to ask questions. Duplicate questions are
flagged as duplicates and send the author to the correct place.
- Chandoo - Forum for the
Chandoo - the blog of Purna Duggirala (MVP). Very active.
- Visual Basic Discord - A
chat room for VB.NET/VBA/VB6 fanatics.
- Excel Discord - Discord
server moderated by Tim Heng (Excel MVP) with focus on helping Excel
users.
- MrExcel - Mostly Excel
generic, but a lot of VBA content can be found here also.
- Excel Forum
Slipstick - Excellent forum
for the Slipstick website (Outlook VBA) of Diane Poremsky (MVP). Diane
is quick to respond, and her answers are extremely helpful.
- VBForums
- Office Development - Forum with focus on VB6/.NET with VBA
section.
Access
World - Forum with focus on Access and Access VBA.
Symbology
Because of the nature of VBA, many libraries do not work on all
Operating Systems, in all Office Applications or in all
architectures(x64/x86). Some libraries may also require external
resources (DLL, Addins, etc.) which can be difficult to use due to VBA’s
lack of a package manager. To help you in finding projects suitable for
your needs, this awesome list uses the following symbology. The
symbology also has tooltips which may provide more information.
-
Available on all platforms
- Available on Windows OS only
-
Available on Mac OS only
Application compatibility
- All applications
- Word
- Excel
- Access
- Outlook
- PowerPoint
- Miscellaneous applications (MS Project, AutoCAD,
etc.) - Specify in short description
- 32-bit only
- Written in VBA
but the code is password protected
- Requires
external dependencies e.g. .dll, .ocx,
.o, etc.
- Requires
installation
- Link includes/leads to
paid content
Contributing
Your contributions are always welcome! Please take a look at the contribution guidelines first.
vba.md
Github