I am trying to build a project planning doc that automatically highlights the month cells based on the start and end dates of the project.
Currently I have entered the formula in the cell... But, I would like the formula to be embedded in the conditional formatting command itself so that I can have other info on the cell...
START END Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
3/5/2014 9/15/2014
Currently I am using the below formula in the cell. Instead I would like to have this formula embedded in the conditional formatting as a formula to highlight the respective cell.
C2 = IF(AND($C$1<=$B2,$A2<$D$1),"Overlap","Do not overlap")
D2 = IF(AND($D$1<=$B2,$A2<$E$1),"Overlap","Do not overlap")