Thread
:
How can I count items in a filtered list?
View Single Post
#
35
Posted to microsoft.public.excel.worksheet.functions
T. Valko
external usenet poster
Posts: 15,768
How can I count items in a filtered list?
=SUMPRODUCT(SUBTOTAL(3,OFFSET(B2:B100,ROW(B2:B10 0)-ROW(B2),0,1)),--(B2:B100="A"))
it seem to work only for non-numerical data.
Just a couple of minor changes should do the trick:
=SUMPRODUCT(SUBTOTAL(2,OFFSET(B2:B100,ROW(B2:B100)-ROW(B2),0,1)),--(B2:B100=n))
Where n = the number to count. For example, to count the number of times 5
appears in the filtered (or unfiltered) range:
=SUMPRODUCT(SUBTOTAL(2,OFFSET(B2:B100,ROW(B2:B100)-ROW(B2),0,1)),--(B2:B100=5))
--
Biff
Microsoft Excel MVP
"C Smith" <C
wrote in message
...
This works (great); however, it seem to work only for non-numerical data.
I
am analyzing a survey the numerical responses where 5 = strongly agree, 4
=agree, etc. I really don't want to convert it all to alpha-characters
since
I am performing other statistical functions on those cells. Any ideas?
"T. Valko" wrote:
This will "COUNTIF" B2:B100 = "A" in a filtered list:
=SUMPRODUCT(SUBTOTAL(3,OFFSET(B2:B100,ROW(B2:B100)-ROW(B2),0,1)),--(B2:B100="A"))
--
Biff
Microsoft Excel MVP
"tommy" wrote in message
...
do anybody know, how to use "countif" with filtered lists?
the function subtotal does not allow conditions (e.g. "name")
the function countif does it, but it count hidden cells, too
thank you for your ideas
"N Harkawat" wrote:
=subtotal(2,a1:a1000)
"Counting filtered data." <Counting filtered
wrote in message
...
I have an excel spread sheet table that I filter. I would like to be
able
to
count the number of cells in the filtered data. Anyone know how to
do
this?
CountA returns the number of cells in the unfiltered data.
Tom
Reply With Quote
T. Valko
View Public Profile
Find all posts by T. Valko