-1
You can use the following formula:
=SUMPRODUCT(LEN(A1:A7)-LEN(SUBSTITUTE(A1:A7;"V";"")))
Where:
A1:A7
= Sash"V"
= Desired character
How it works?
LEN(SUBSTITUTE(A1:A7;"V";""))
removes all occurrences of the letter "V" from the text and counts the number of characters remaining- Calculating the difference between
LEN(A1:A7)
(original text) andLEN(SUBSTITUTE(A1:A7;"V";""))
(text without "V"s) it is possible to find out how many Vs have been removed from the text and so know how many times the character appears.SUMPRODUCT
sum the numbers in the list
Thank you very much. Saved! Haha
– David Alves