DushiPunda
Well-known Member
- Joined
- Nov 14, 2015
- Messages
- 518
- Office Version
- 2021
- Platform
- Windows
Greetings,
I have a monthly schedule spreadsheet that I'd like to add some conditional formatting to based on a date range that would exist in one cell.
Example:
B42 = 8/18/24-8/22/24
Conditional formatting applied to C3:AG4
Expected result: Highlight the given dates on my sheet (in this case it would highlight T3:X4).
If necessary, I'm open to having a couple cells outside of the print area if I need to use a formula to split the range into two different cells.
I was able to do this split by doing:
Now just need to concoct a conditional formatting formula that looks at those dates and highlights the necessary cells.
I have a monthly schedule spreadsheet that I'd like to add some conditional formatting to based on a date range that would exist in one cell.
Example:
B42 = 8/18/24-8/22/24
Conditional formatting applied to C3:AG4
Expected result: Highlight the given dates on my sheet (in this case it would highlight T3:X4).
If necessary, I'm open to having a couple cells outside of the print area if I need to use a formula to split the range into two different cells.
I was able to do this split by doing:
Excel Formula:
=LEFT(B42,FIND("-",B42&"-")-1)
Excel Formula:
=RIGHT(B42,FIND("-",B42&"-")-1)
Now just need to concoct a conditional formatting formula that looks at those dates and highlights the necessary cells.