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",""))
↧