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


Article ID
Blank
4018073
4057115
4474419
4512486
4516033
4516065
Blank
4474419
4512486
4516033
4516065
Blank
4018073
4057115
4474419
4512486
4516033
4516065
Blank
4018073
4057115
4474419
4512486
4516033
4516065

<colgroup><col></colgroup><tbody>
</tbody>

<colgroup><col></colgroup><tbody>
</tbody>
When done

Article ID
6
4018073
4057115
4474419
4512486
4516033
4516065
4
4474419
4512486
4516033
4516065
6
4018073
4057115
4474419
4512486
4516033
4516065
6
4018073
4057115
4474419
4512486
4516033
4516065

<tbody>
</tbody>

<colgroup><col></colgroup><tbody>
</tbody>
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
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,214,611
Messages
6,120,510
Members
448,967
Latest member
screechyboy79

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