View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default formula to keep a running tally of the number of times a certain w

=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
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"CJZ" wrote in message
...
should have looked around before I posted... found my answer:

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