Webbers
New Member
- Joined
- Oct 20, 2004
- Messages
- 41
I have been trying to figure out how to do this for the last few hours, so first of all, your help and time is greatly appreciated!
Okay, I need to integrate a conditional format into my current spreadsheet that factors in multiple criteria in order to flag a cell.
F3 - Status - Multiple status are available. This flag applies to all status except for "Complete", there are approximately 12, I would like to avoid listing them individually if possible.
H3, J3, DJ3, DK3, and DL3 - These fields MUST have values entered. If these cells have any blank cells, the flag will not be triggered.
P3 - This cell must be blank.
If all of the above criteria have been met, then the flag will be triggered. This conditional format is for column A (which has an ID #). Once updates have been posted cell P3 (previously blank) will have values populated, and the flag in column A will disappear. The formula I have come up with is below, but obviously is not a workable option. Thanks again!
=AND(NOT($F3="Complete"),NOT(ISBLANK(H3),NOT(ISBLANK(J3),NOT(ISBLANK(DJ3),NOT(ISBLANK(DK3),NOT(ISBLANK(DL3),ISBLANK(P3)))))))
Okay, I need to integrate a conditional format into my current spreadsheet that factors in multiple criteria in order to flag a cell.
F3 - Status - Multiple status are available. This flag applies to all status except for "Complete", there are approximately 12, I would like to avoid listing them individually if possible.
H3, J3, DJ3, DK3, and DL3 - These fields MUST have values entered. If these cells have any blank cells, the flag will not be triggered.
P3 - This cell must be blank.
If all of the above criteria have been met, then the flag will be triggered. This conditional format is for column A (which has an ID #). Once updates have been posted cell P3 (previously blank) will have values populated, and the flag in column A will disappear. The formula I have come up with is below, but obviously is not a workable option. Thanks again!
=AND(NOT($F3="Complete"),NOT(ISBLANK(H3),NOT(ISBLANK(J3),NOT(ISBLANK(DJ3),NOT(ISBLANK(DK3),NOT(ISBLANK(DL3),ISBLANK(P3)))))))