I have a column of data and I want to find how many semicolons are in that column.
So for example:
a;
b;
c
d;
I would expect to return 3.
However, for:
e;f;
g;
h;i;j;
k;
I expect to return 7.
I tried using:
=COUNTIF(A:A,";"))
but it only returned 4 for my second example...