I have looked online to see if I could get this figured out on my own, but I have been unsuccessful in finding exactly what I am looking for. I have a tracking spreadsheet. Column A contains a date that a list was created, Column B will have a date entered for when the list was sent to the provider. I have it formatted so if there is no date in column A, both columns have no formatting colors. If Column A has a date, I want column B to show red fill/red font if 4 working days (excluding holidays) have passed since the date in Column A. I want column B to show red even if it is blank (no date) but it is past the 4 working days. If it is less than 4 working days, I want column B to show green fill/font, whether column B has a date in it or not.
I was able to get one formula to work, but it does not look at workdays, and I hadn't decided to exclude holidays at that point. My holidays are listed in cells B34:B54
What I have so far is:
Formula: =IF(TODAY()<$B$2+3,1,0) Green fill with green font
Formula: =IF($B$2<TODAY()+4,1,0) Red fill with red font
Formula: =$B$2="" No formatting
I know that I need the WORKDAY function in there somewhere, and I believe I need the TODAY function in there as well, but I have no idea of what should go where. Any help is greatly appreciated!!
I was able to get one formula to work, but it does not look at workdays, and I hadn't decided to exclude holidays at that point. My holidays are listed in cells B34:B54
What I have so far is:
Formula: =IF(TODAY()<$B$2+3,1,0) Green fill with green font
Formula: =IF($B$2<TODAY()+4,1,0) Red fill with red font
Formula: =$B$2="" No formatting
I know that I need the WORKDAY function in there somewhere, and I believe I need the TODAY function in there as well, but I have no idea of what should go where. Any help is greatly appreciated!!