Need help on Countif formula for certain text on multiple cell range

Michpete9

New Member
Joined
Sep 9, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Want to count all the "EMS" across Monday to Friday, for all 5 weeks. (Only Weekdays) .. Need Help pls. Hope the question is clear

MonTueWedThuFriWork ModeSatSunWork ModeMonTueWedThuFriWork ModeSatSunWork ModeMonTueWedThuFri
12345678910111213141516
EMSASEMSEMSEMSGSGSGSEMSEMS
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Perhaps try something like this...
Excel Formula:
=SUMPRODUCT((A1:W1<>"Sat")*(A1:W1<>"Sun")*(A4:W4="EMS"))
 
Upvote 0
Hi & welcome to MrExcel.
Another option
Excel Formula:
=countifs(A4:W4,"ems",A$1:W$1,"<>Sat",A$1:W$1,"<>Sun")
 
Upvote 0

Forum statistics

Threads
1,215,378
Messages
6,124,603
Members
449,174
Latest member
ExcelfromGermany

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