Do you mean count, not sum? Do you mean count all cells even if they
contain text; or do you mean count the cells that contain text, excluding
those that are numeric?
To count all non-empty cells:
=counta(A1:A100)
To count cells that contain text, exlcuding those that are numeric:
=sumproduct(--istext(A1:A100))
To sum cells, regardless of whether they are numeric or they contain numeric
strings as text:
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.