Ok, my situation is that I need to count the non blank cells in a range. No matter how much I look at examples or tinker with my code it just does not seem to accpet it.
Say I have entries going every 7 spots starting at cell A6, that would mean by the time it reaches A75 there is 10 entries. Every time I attmept to count I get the Cells total, which is a number in the 70+, I don't want that. So how do I get just the cells that have something in them?
Dim c As Integer
c = 0
Range("a6:a75").Select
c = CountIf(Range("a6:a75"), "<>")
Range("a2").Value = c
Thanks Plenty
Link S
Bookmarks