Countif with Criteria only visible cells

hrayani

Well-known Member
Joined
Jul 23, 2010
Messages
1,494
Office Version
  1. 2016
Platform
  1. Windows
Hello Friends,

I am using this formula to count cells if they contain the word DELAY
in Cell A1
Code:
[B]=COUNTIF(A2:A10,"*"&"Delay"&"*")[/B]


Here is a sample list
From A2 to A10

Delay 25 Days
On Time
Delay 52 Days
Early 12 Days
On Time
Delay 52 Days
Early 12 Days
On Time
Delay 52 Days



I want the above formula to work only for visible rows.

Any help would be appreciated.

Regards,

Humayun
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
What are criteria of rows visibility?
 
Upvote 0
The data is filtered if some adjacent cells do not have any values
 
Upvote 0
So add this criteria also into your formula.
Like:

Code:
=COUNTIFS(A2:A10,"*"&"Delay"&"*",C2:C10,"<>")
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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