count rows down in column from blank to blank

Danny54

Active Member
Joined
Jul 3, 2019
Messages
295
Office Version
  1. 365
Platform
  1. Windows
is there a function that I can insert that will count the # of rows containing data, counting downward until finding a blank row?

im using a vba script that builds the data and I i could insert somekind of function if there is one (perhaps?)


the data looks like this


[TABLE="width: 83"]
<colgroup><col></colgroup><tbody>[TR]
[TD]Article ID[/TD]
[/TR]
[TR]
[TD]Blank[/TD]
[/TR]
[TR]
[TD]4018073[/TD]
[/TR]
[TR]
[TD]4057115[/TD]
[/TR]
[TR]
[TD]4474419[/TD]
[/TR]
[TR]
[TD]4512486[/TD]
[/TR]
[TR]
[TD]4516033[/TD]
[/TR]
[TR]
[TD]4516065[/TD]
[/TR]
[TR]
[TD]Blank[/TD]
[/TR]
[TR]
[TD]4474419[/TD]
[/TR]
[TR]
[TD]4512486[/TD]
[/TR]
[TR]
[TD]4516033[/TD]
[/TR]
[TR]
[TD]4516065[/TD]
[/TR]
[TR]
[TD]Blank[/TD]
[/TR]
[TR]
[TD]4018073[/TD]
[/TR]
[TR]
[TD]4057115[/TD]
[/TR]
[TR]
[TD]4474419[/TD]
[/TR]
[TR]
[TD]4512486[/TD]
[/TR]
[TR]
[TD]4516033[/TD]
[/TR]
[TR]
[TD]4516065[/TD]
[/TR]
[TR]
[TD]Blank[/TD]
[/TR]
[TR]
[TD]4018073[/TD]
[/TR]
[TR]
[TD]4057115[/TD]
[/TR]
[TR]
[TD]4474419[/TD]
[/TR]
[TR]
[TD]4512486[/TD]
[/TR]
[TR]
[TD]4516033[/TD]
[/TR]
[TR]
[TD]4516065[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 83"]
<colgroup><col></colgroup><tbody>[TR]
[TD] [/TD]
[/TR]
</tbody>[/TABLE]
When done

[TABLE="width: 83"]
<tbody>[TR]
[TD]Article ID[/TD]
[/TR]
[TR]
[TD]6 [/TD]
[/TR]
[TR]
[TD]4018073[/TD]
[/TR]
[TR]
[TD]4057115[/TD]
[/TR]
[TR]
[TD]4474419[/TD]
[/TR]
[TR]
[TD]4512486[/TD]
[/TR]
[TR]
[TD]4516033[/TD]
[/TR]
[TR]
[TD]4516065[/TD]
[/TR]
[TR]
[TD]4 [/TD]
[/TR]
[TR]
[TD]4474419[/TD]
[/TR]
[TR]
[TD]4512486[/TD]
[/TR]
[TR]
[TD]4516033[/TD]
[/TR]
[TR]
[TD]4516065[/TD]
[/TR]
[TR]
[TD]6[/TD]
[/TR]
[TR]
[TD]4018073[/TD]
[/TR]
[TR]
[TD]4057115[/TD]
[/TR]
[TR]
[TD]4474419[/TD]
[/TR]
[TR]
[TD]4512486[/TD]
[/TR]
[TR]
[TD]4516033[/TD]
[/TR]
[TR]
[TD]4516065[/TD]
[/TR]
[TR]
[TD]6[/TD]
[/TR]
[TR]
[TD]4018073[/TD]
[/TR]
[TR]
[TD]4057115[/TD]
[/TR]
[TR]
[TD]4474419[/TD]
[/TR]
[TR]
[TD]4512486[/TD]
[/TR]
[TR]
[TD]4516033[/TD]
[/TR]
[TR]
[TD]4516065[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 83"]
<colgroup><col></colgroup><tbody>[TR]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
You're welcome & thanks for the feedback
 
Upvote 0
Seems like you have a solution that you are happy with but in case your column is is a column of formulas, some of which are returning "" and others returning numerical values then, if desired, you could keep formulas in the column as follows.

Rich (BB code):
Sub CountRows()
  Dim rng As Range
  
  For Each rng In Range("A2", Range("A" & Rows.Count).End(xlUp)).SpecialCells(xlFormulas, xlNumbers).Areas
    rng.Cells(0).Formula = "=Count(" & rng.Address & ")"
  Next rng
End Sub
 
Upvote 0

Forum statistics

Threads
1,225,754
Messages
6,186,825
Members
453,377
Latest member
JoyousOne

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