Counting number of consecutive blank cells on adjacent rows

johnnybj

New Member
Joined
Feb 18, 2019
Messages
4
Hi,

I have found several solutions in here on how to count the highest number of consecutive blank cells in a single row, like so;

=LARGE(FREQUENCY(IF(A10:N10<>"","",COLUMN(A10:N10)),IF(A10:N10="","",COLUMN(A10:N10))),1)

This works like a charm. However, how do I go about counting the (highest) number of consecutive blank cells in two adjacent rows?

Let's assume that the two adjacent rows are 9 and 10. Let's also assume that the last 3 cells in row 9 are empty and that the 4 first cells in row 10 are empty as well.
The function should count that as 7 consecutive empty cells.

(Btw, I have tried changing the range used above from A10:N10 to A9:N10 to no avail)

Thanks in advance...!!!

John
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Welcome to Mr Excel forum

Maybe this array formula...
=MAX(FREQUENCY(IF(A9:N10="",ROW(A9:N10)*10^5+COLUMN(A9:N10)),IF(A9:N10<>"",ROW(A9:N10)*10^5+COLUMN(A9:N10),"")))
confirmed with Ctrl+Shift+Enter, not just Enter

Hope this helps

M.
 
Upvote 0
Thanks a lot Marcelo..!!!

You're a lifesaver! This works perfect, and I really appreciate that you were able to come up with a solution so fast..!!
I have been programming computers for 30 years, but I realize that I'm a complete novice when it comes to some of the advanced Excel functions..

Best Regards,
John
 
Upvote 0
Hi again Marcel (or anyone else who cares to answer).


How about if the two rows are not adjacent? Let's say that the rows in question are 8 and 10? (row 9 to be ignored).


Thanks in Advance!!


John
 
Upvote 0
Maybe...

=MAX(FREQUENCY(IF(ISNUMBER(MATCH(ROW(A8:N10),{8;10},0)),IF(A8:N10="",ROW(A8:N10)*10^5+COLUMN(A8:N10))),IF(ISNUMBER(MATCH(ROW(A8:N10),{8;10},0)),IF(A8:N10<>"",ROW(A8:N10)*10^5+COLUMN(A8:N10)))))
Ctrl+Shift+Enter

Assumes data in A8:N8 and A10:N10

M.
 
Upvote 0
Hi Marcelo,

Absolutely frigging amazing..!!!!! It's working as intended.
Thanks a lot for your help! It's priceless...

Best Regards,
John
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,747
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top