SOLVED

Need Help on Excel formula

Brass Contributor

Hi all,

I have this formula located in Conditional Formatting (as shown below). It highlights the cell on every Fridays. If the Friday is a holiday, it highlights the next workday e.g., Monday. Holidays are in Cmd worksheet. I would like to modify it by highlighting the cell the day before the holiday e.g., Thursday or Wednesday in case of Thu and Fri are consecutive holidays. Thanks in advance, I will greatly appreciate any help in this regard.

 

=TODAY()=WORKDAY(TODAY()+1-WEEKDAY(TODAY(),15)-1,1,Cmd!$A$6:$A$17)  

2 Replies
best response confirmed by A2Z CF (Brass Contributor)
Solution

@A2Z CF 

Try this formula:

 

=IF(ISERROR(MATCH(TODAY(),Cmd!$A$6:$A$17,0)),TODAY()=TODAY()+7-WEEKDAY(TODAY(),16)-ISNUMBER(MATCH(TODAY()+1,Cmd!$A$6:$A$17,0))-ISNUMBER(MATCH(TODAY()+2,Cmd!$A$6:$A$17,0)))

Awesome! What a great formula. It solved the problem. I appreciate it thank you so much for solving my problem. May the power be with you!
Thank you!
1 best response

Accepted Solutions
best response confirmed by A2Z CF (Brass Contributor)
Solution

@A2Z CF 

Try this formula:

 

=IF(ISERROR(MATCH(TODAY(),Cmd!$A$6:$A$17,0)),TODAY()=TODAY()+7-WEEKDAY(TODAY(),16)-ISNUMBER(MATCH(TODAY()+1,Cmd!$A$6:$A$17,0))-ISNUMBER(MATCH(TODAY()+2,Cmd!$A$6:$A$17,0)))

View solution in original post