Excel Charts
March 2025

Bubble Pies: Multi-Dimensional Data in One Chart

Overlay mini pie charts on a bubble chart to show market positioning, scale, and sector composition.

Excel Charting VBA
April 2025

Building a Marimekko Chart in Excel

Variable-width stacked bar chart for market share and product mix analysis. 7 combined chart objects create a consulting-grade Mekko visualisation.

Excel Charting Market Analysis
May 2025

Column Chart with Percentage Change Arrows

Year-over-year variance indicators with colour-coded arrows and percentage labels. Uses invisible series and error bars for the bridge connectors.

Excel Charting VBA
June 2025

Simple and Stacked Waffle Charts in Excel

10×10 grid percentage visualisation using SEQUENCE and conditional formatting. Includes single-value and multi-category stacked variants.

Excel Charting VBA
August 2025

Horizontal RainCloud Charts in Excel

Distribution visualisation combining density curves, box plots, and scatter plots. 34 chart objects create 1-cloud and 3-cloud comparison layouts.

Excel Statistics VBA
September 2025

Vertical RainCloud Charts in Excel

Vertical orientation with 27 chart objects. 1-cloud and 3-cloud layouts with density, box plot, and jittered scatter layers.

Excel Statistics VBA
November 2025

Point & Figure Chart with Bollinger Bands

Classic technical analysis chart built from MSFT stock data with Bollinger Band overlays. X/O columns with formula-driven bin width and switch detection.

Excel Finance VBA
December 2024

Christmas Tree Light Generator in Excel

A festive creation with randomised Unicode ornaments, conditional formatting lights, and seasonal greetings. Press F9 to regenerate the decorations!

Excel Fun VBA
Excel Tips and Tricks
January 2026

Matrix Manipulation: 8 Formula Approaches to 2D Aggregation

Compare MMULT, SUMIFS, GROUPBY, and LAMBDA variants for aggregating categorised data into a summary matrix. Interactive demo lets you switch between all 8 methods.

Excel Formulas Interactive
February 2026

Solving the Subset Sum Problem with Excel Formulas

Find all combinations of numbers that sum to a target using SEQUENCE, BASE, MMULT, and FILTER. Three approaches from step-by-step to a single formula.

Excel Algorithms Dynamic Arrays
March 2026

Dynamic Hyperlinks That Never Break

Formula-driven hyperlinks using HYPERLINK(), INDIRECT(), and CELL() that auto-update when sheets are renamed.

Excel Formulas Navigation
Custom UDFs
January 2026

fn_Sum_by_Color: Sum Cells by Fill Color

Sum cells whose background color matches a reference cell. Ideal for color-coded financial models.

Excel VBA UDF
January 2026

fn_Range_Has_Notes: Detect Cell Comments

Returns a TRUE/FALSE array indicating which cells have legacy comments (Notes) attached.

Excel VBA UDF
January 2026

fn_Extract_Comments_Thread: Export Threaded Comments

Extract all threaded comments and replies into a structured table with Cell, Author, Date, and Text columns.

Excel VBA UDF
February 2026

fn_NMATCH: Find the Nth Occurrence

Like MATCH but finds the Nth occurrence of a value. Supports array inputs for lookup value and instance number.

Excel VBA UDF
February 2026

fn_ROTATE: Rotate a 2D Range 90 Degrees

Rotate any 2D range clockwise with an optional count for 180 or 270 degree rotations.

Excel VBA UDF
February 2026

fn_Does_File_Path_Exist: Check File Paths

Returns TRUE/FALSE for each cell, checking whether the file path actually exists on disk.

Excel VBA UDF
February 2026

fn_Is_Hyperlink: Detect Hyperlinks in Cells

Returns TRUE/FALSE indicating whether each cell contains a hyperlink.

Excel VBA UDF
VBA Tools
September 2025

Audit & Formula Tracing Tools

Enhanced Trace Dependents/Precedents with safety checks for large networks, plus a quick Toggle R1C1 reference style switch.

VBA Auditing
March 2025

Clipboard Power Tools

Copy cell addresses, formulas as text, and select ranges from clipboard text using the Windows API.

VBA Clipboard
October 2025

Workbook Error Scanner

Scan every sheet for #REF!, #VALUE!, #N/A and all other errors. Produces a clickable hyperlinked report.

VBA Error Handling
August 2025

Data Validation Inspector

List all data validation rules across a workbook, and find cells that violate their own validation constraints.

VBA Data Validation
July 2025

Workbook Documentation Suite

Document named ranges, embedded objects, unique formulas (R1C1), and chart series across the entire workbook.

VBA Documentation
June 2025

Power Query Manager

Extract, export, import, and remove Power Query definitions with VBA for version control and migration.

VBA Power Query
March 2025

Text Case Transformations

Six in-place text case macros: UPPER, lower, Proper, Title Case (with article rules), tOGGLE, and Sentence case.

VBA Text
February 2025

Auto-Grouping Rows by Title Hierarchy

Automatically create outline groups from 2 to 8 levels based on which column contains the row title. Plus Collapse/Expand All.

VBA Outlining
November 2025

Dynamic Array Spill Resolver

Detect and fix #SPILL! errors across the workbook by automatically inserting rows and columns for dynamic arrays.

VBA Dynamic Arrays
December 2025

Workbook Statistics Report

Generate a comprehensive stats report: used ranges, formula density, dynamic array metrics, unique formulae, and sheet dependencies.

VBA Analytics
April 2025

Auto Save & Version Control

Timed auto-save and automatic version numbering with initials prefix. Lightweight version control for Excel.

VBA Automation
May 2025

VBA Code Inspector

List every Sub, Function, and Property across all open workbooks. Plus a UDF to retrieve source code from a cell formula.

VBA Development
January 2025

Mass Naming & Hyperlink Tools

Bulk-create numbered named ranges, convert cell references to names, and add hyperlinks to formula cells.

VBA Named Ranges
February 2025

Smart Fill in All Four Directions

Fill blank cells from the nearest value in any direction: down, up, right, or left. Perfect for cleaning imported data.

VBA Data Cleaning
January 2025

Formula Calculation Timer

Measure single-cell recalculation time or full workbook rebuild time to four decimal places for performance tuning.

VBA Performance
November 2024

Fill Blank Cells to the Left with VBA

A simple VBA macro to fill all blank cells in selected rows with the value from the nearest non-blank cell to the right.

VBA Automation
September 2024

Automating Sheet Setup in Excel

Reset all visible, hidden, and very hidden sheets to cell A1 with 100% zoom for a clean workbook presentation.

VBA Automation
September 2024

Removing Same-Sheet References

Clean up redundant same-sheet references in your formulas automatically. Handles both quoted and unquoted sheet names.

VBA Automation