Counting sick days from a row

mistersteve

Board Regular
Joined
Aug 18, 2014
Messages
110
Office Version
  1. 365
As Usual, I need some help
I require to count how many "Si" on Mondays, Tuesdays, etc that have occurred
See Below John has taken 3 Fridays, 2 Mondays

Can anyone please advise the formula

1622213385415.png
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Maybe
Excel Formula:
=countifs(f14:z14,"Si",f11:z11,"M")
for Monday
 
Upvote 0
Maybe
Excel Formula:
=countifs(f14:z14,"Si",f11:z11,"M")
for Monday

Problem is going to be with Tuesday and Thursdays, could you change one of the 'T's to either Tu or Th (it will be the same issue for Sat and Sun)
 
Upvote 0
Good point.
Another option, for Tuesday
Excel Formula:
=SUMPRODUCT((F14:Z14="Si")*(WEEKDAY($F$11:$Z$11,2)=2))
 
Upvote 0
Thanks Again,

I stuck with the first formula and changed Ts to Tu and Th
Sat and Sun not an issue
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,424
Messages
6,119,404
Members
448,893
Latest member
AtariBaby

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