Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
should have looked around before I posted... found my answer:
=SUMPRODUCT(--(L4:L555="sdp")) "CJZ" wrote: 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=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")) |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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")) |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're welcome, CJZ !
-- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "CJZ" wrote in message ... thanks Max. that's a better option. appreciate it. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count the number of times a cell value is within a specific range | Excel Worksheet Functions | |||
Running a Macro a number of times | Excel Discussion (Misc queries) | |||
=SUMPRODUCT formula help | Excel Worksheet Functions | |||
Copy a formula down a set number of times | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions |