I have this formula that I am using for conditional formatting that highlights cells based on the date in column AG
. I got the formula from a stackoverflow genius :-)
Logic:
If Today()
is a Monday I need to highlight the cell if the date in AG
is the PREVIOUS Friday, Saturday and Sunday
If Today()
is a Tuesday through Friday then I need to highlight if the date in AG
is the previous day
The formula works great in the conditional formatting cells but I also would like to adapt it to a COUNTIFS
formula so I can count the amount of records that meet the criteria.
Here is the formula: =OR(AND(WEEKDAY(TODAY())>= 3,WEEKDAY(TODAY())<=6,INT(AG10)=INT(TODAY()-1)),AND(WEEKDAY(TODAY())=2,INT(AG10)>=INT(TODAY()-3),INT(AG10)<=INT(TODAY()-1)))
Can someone help me tweak it to work with COUNTIF
or COUNTIFS
?