Metaphysix
New Member
- Joined
- Feb 19, 2015
- Messages
- 13
Trying to develop a single formula for conditional formatting that doesn't include a cell reference so I can apply to an entire column. My data is a column of dates, but runs across multiple blanks and column headers that I don't want formatted.
Conditions:
1. not(isblank)
2. is(date)
3. <today() +7
I was able to sort of get these conditions checked when using cell references, but having a hard time translating this into a format that could be applied as a true / false test for each cell in a column:
=AND(A1<>"",IF(LEFT(CELL("format",A1),1)="D","TRUE","FALSE"),A1<TODAY()+7)
Probably a simpler way to get the date format checked, but this works. Also need to double check that the AND statement evaluates the result from the 2nd logic test as TRUE / FALSE rather than text, but it seems to work so far.
Any help would be appreciated!
Conditions:
1. not(isblank)
2. is(date)
3. <today() +7
I was able to sort of get these conditions checked when using cell references, but having a hard time translating this into a format that could be applied as a true / false test for each cell in a column:
=AND(A1<>"",IF(LEFT(CELL("format",A1),1)="D","TRUE","FALSE"),A1<TODAY()+7)
Probably a simpler way to get the date format checked, but this works. Also need to double check that the AND statement evaluates the result from the 2nd logic test as TRUE / FALSE rather than text, but it seems to work so far.
Any help would be appreciated!