formula to keep a running tally of the number of times a certain w

G

Guest

formula to keep a running tally of the number of times a certain word appears
in a spreadsheet...

I'd like one cell that I can refer to that will always show me the number of
times SDP is listed in a spreadsheet.

Thanks in advance
 
G

Guest

should have looked around before I posted... found my answer:

=SUMPRODUCT(--(L4:L555="sdp"))
 
M

Max

=SUMPRODUCT(--(L4:L555="sdp"))

An alternative for a single criteria count is:
=COUNTIF(L4:L555,"sdp")

And if the data setup permits using entire* col refs,
then it could be just simply:
=COUNTIF(L:L,"sdp")

*imo, that's an advantage in this instance,
since Sumproduct does not accept entire col references
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top