I have an array of unsorted numbers and blank cells, and I would like to count the number of blanks within the entire column, but I would like to restrict this to a range up to and including a specific row number. This is because I will be adding more data to my excel file in the coming months and I would like this automatically update. Is there a way that I can restrict the row where countblank stops dynamically? If need be I would not have a problem with doing this using a specific value not necessarily the row where that value is if it's easier.
Here is a portion of my array. I have a / where there are blanks.
1
2
3
/
/
5
/
13
2
/
7
/
7
6
/
64
In this example I would like to have the counting stop at the last 7. My real array is significantly longer though and I will be stopping somewhere in the middle.
Thank you!