Quantcast
Channel: Automate Excel » cell
Viewing all articles
Browse latest Browse all 6

Count Characters in a Cell

$
0
0
To count the total characters (including spaces) in cell A1: =len(A1) To count the total characters (not including spaces) in cell A1: =LEN(SUBSTITUTE(A1," ","")) To count the total specific characters in Cell A1, for instance the number of times the letter “d” appears in cell A1: =LEN(A1)-LEN(SUBSTITUTE(A1,"d",""))

Viewing all articles
Browse latest Browse all 6

Trending Articles