View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
CJZ CJZ is offline
external usenet poster
 
Posts: 12
Default formula to keep a running tally of the number of times a certa

thanks Max. that's a better option. appreciate it.

"Max" wrote:

=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"))