How to count how many cell have values in a single column?

So i’m trying to get a formula to count in a column how many cell have values in it, like this. I don’t really know how to explain it better and simpler, just count how many cells have values in them.

| A |

| |
| X | | 3 |
| X |
| |
| X |

Hallo

=COUNT( A:A )    # counts only numeric Values

=COUNTA( A:A )    # counts Text and numeric Values
1 Like