Selected Answer
Hi Man On Fire,
In the attached file (Count Blanks Rev1) I have used VBA to achieve your goal. There are 2 options (Log V1 and Log V2)for you. Each worksheet has the same simple 6-column, 24-row table that I use to demonstrate the results.
On worksheet "Log V1" a separate table is created to list how many blanks are in each column.
On worksheet "Log V2" the number of blanks is entered into the cell in Row 1 of each column.
Cell references in both macros will need to be modified to suit your file.
If this solves things for you then please mark my answer as Selected.
Cheers :-)
Update - June 15/26
I tried using the formula you posted but kept getting an error. So I built my own array formula. An array formula is typed like any other formula but must be entered using the key combination: Ctrl+Shift+Enter:
Here is the formula as typed in (don't type the curly brackets):
=(MATCH(FALSE,ISBLANK(A1:A24),0))-1
Here is the formula after entering it as an array formula using Control-Shift-Enter key combination (notice the curly brackets got added)
{=(MATCH(FALSE,ISBLANK(A1:A24),0))-1}
You just need to update the range reference (A1:A24) to suit your file.
After entering just drag it to the right and the column reference will update accordingly.
I have updated my file to include this formula on the "Log V1" sheet.
I hope this solves things for you.
Updated June 27 - file added - 2026-06-27 Sample Rev1
Worksheet "My Tests" has the formula in Row 1
Updated July 1 - file added - 2026-06-29 Sample Rev2
Worksheet "Sample 1 Revised" uses VBA
It's also interesting that your latest file contains macros yet at the outset of this you stated that your company blocks macros.