Excel Formula Help -Filtered Row

ststern45

Well-known Member
Joined
Sep 17, 2005
Messages
960
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
Hi everyone,

I'm looking for a formula that will count how many times a number appears from a filtered column.

For example, Cell Range A2:A1001

I have multiple values of 000 in cell range A2:A1001

Once I filter another Row I want to count how many times the 000 (or any value) appears in cell range A2:A1001

Thank you
 
Last edited by a moderator:

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Hi,

Take a look at this and see if this helps:


Book1
ABCD
1131
30
50
6000
80
90
110
Sheet14
Cell Formulas
RangeFormula
D1=SUMPRODUCT((A2:A1001="000")*(SUBTOTAL(103,OFFSET(A2,ROW(A2:A1001)-MIN(ROW(A2:A1001)),0))))
 
Last edited:
Upvote 0

Book1
ABCDEFG
1
210002
3004
40
5000
60
7000
80
Sheet1


In G2 control+shift+enter, not just enter, and copy down:

=SUMPRODUCT(SUBTOTAL(3,OFFSET($A$2,ROW($A$2:$A$8)-ROW($A$2),0)),IF(ISNUMBER(F2),($A$2:$A$8=F2)+0,ISNUMBER(FIND(F2,$A$2:$A$8))+0))
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,716
Members
448,985
Latest member
chocbudda

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top