I have an Excel spread sheet with some fields in a column containing from 0 - 3 crosses (x). I want to count these crosses(x) and put a total at the end. Can this be achieved?
If the cells contain croses or are empty then you can create a formula in the next column:
=len(a1)
(or whatver cell is relevant).
You can then sum this extra column.
Alternatively, in any cell type
=SUM(LEN(A1:A9))
and enter this as a range formula (Ctrl+Shift+Enter)
Use your own cell range obviously.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.