I have a formula I cant figure out. I have them working separately, but not together.
This code works to count the number of times a specific weekday shows up. In this example I am counting the number of times Monday shows up.
This code counts how many times John is in the text.
I cant get this one to work.
Thanks
This code works to count the number of times a specific weekday shows up. In this example I am counting the number of times Monday shows up.
Code:
=SUMPRODUCT(--(WEEKDAY(A1:A10)=2))
Code:
=COUNTIF(B1:B10,"*john*")
Code:
=SUMPRODUCT(--(WEEKDAY(A1:A10)=2),--(COUNTIF(B1:B10,"*john*")))