I have a long column.
Each row in each cell has lot of text.
I want a column on right to tell me how many characters are in the text for
each cell. column. It's a huge business thing I need. Thanks!
Not sure what "for each cell. column." means...
Perhaps you can just use LEN()??:
A B
1 Big Long Text String =LEN(A1)
2 Another Text String =LEN(A2)
My first suggestion was based on your request for "the character count
for all the cells in a certain column" which I read to mean a single
total of all of the characters in that column.
If neither is what you mean, please be more explicit in what you're
looking for.