sum letters ex. d+d+d=3d

V

Vasant Nanavati

Not really. You can use a formula such as:

=SUMPRODUCT(--(A1:A100="d"))&"d"
 
K

KL

Actually, if you need to count every single occurence of :d" in
multi-character strings in a range, you can use:

=SUMPRODUCT(LEN(A1:A4)-LEN(SUBSTITUTE(A1:A4,"d","")))

if you want to count all the multi-character strings in a range where "d"
occurs at least once:

=COUNTIF(A1:A10,"*d*")

Regards,
KL
 
V

Vasant Nanavati

Ah ... I missed that possible interpretation, JE. Perhaps it's a combination
of yours and mine! <g>

Regards,

Vasant
 
B

Bob Phillips

Back to the other problem :)


Vasant Nanavati said:
Ah ... I missed that possible interpretation, JE. Perhaps it's a combination
of yours and mine! <g>

Regards,

Vasant
 
Top