Help: COUNTIFS EXCLUDING HIDDEN ROWS?

conky4

New Member
Joined
Nov 5, 2012
Messages
24
I know countifs counts everything including hidden rows...so how would I modify my formula with a different command to NOT COUNT hidden rows based on criteria?

This is what my formula is now:
=SUM(COUNTIFS(D3:D40,{"12","10","8*","8","OT*","TRADE*","DENIED"})) which counts up everything even if hidden, I need it to count up anything that fits those criteria but exclude the manually hidden rows. Not sure how to modify it.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Using a helper column, say E for example..

E3 and filled down to E40
=SUBTOTAL(103,D3)

Then add a criteria to your countifs to test that column for 1

=SUM(COUNTIFS(E3:E40,1,D3:D40,{"12","10","8*","8","OT*","TRADE*","DENIED"}))
 
Upvote 0
Using a helper column, say E for example..

E3 and filled down to E40
=SUBTOTAL(103,D3)

Then add a criteria to your countifs to test that column for 1

=SUM(COUNTIFS(E3:E40,1,D3:D40,{"12","10","8*","8","OT*","TRADE*","DENIED"}))


Is there any way to do it maybe with a different command without adding a helper column?
 
Upvote 0

Forum statistics

Threads
1,223,277
Messages
6,171,156
Members
452,385
Latest member
Dottj

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