Is there a way to count a certain column based on the day of the week?
what I want
count the "Hold" (Yellow Box) in the Monday column if today is Monday or count the "Hold" (Yellow Box) in the Tuesday column if today is Tuesday..... continued for each day
This is my current formula
=COUNTIFS({Daily check Monday}, "hold" + COUNTIFS({Daily check Tuesday}, "hold" + COUNTIFS({Daily check Wednesday}, "hold" + COUNTIFS({Daily check Thursday}, "hold" + COUNTIFS({Daily check Friday}, "hold")))))
There are 26 checks that need to be done daily, the current formula would work in an ideal situation. Ideal situation being that all of the checks get done every day.
Right now with this formula it combines all the checks that need to be completed including ones that weren't done the day before, I just want to know how many are needed today.
Thanks!