I'm looking to enhance my conditional formatting to highlight the cell in column C if the content is not an option from the drop-down fields specific to another cell. My spreadsheet has two columns with different drop-down fields. Column B is the subject and column C is the Type, below is an example of the lists setup. Column C drop-down is based on what's entered into column B.
Right now I have the following format values. However, as long as the text is listed in the types formatting is not affected. I'd like it to change if the content does not match the list specifically to the subject options.
=AND(NOT(ISBLANK(B8)),ISERROR(MATCH(B8,projectID,0)))
=AND(NOT(ISBLANK(C8)),ISERROR(MATCH(C8,taskID,0)))
[TABLE="width: 500"]
<tbody>[TR]
[TD]Subject Column B
[/TD]
[TD]Type Column C
[/TD]
[/TR]
[TR]
[TD]Audit
[/TD]
[TD]Deposits
[/TD]
[/TR]
[TR]
[TD]Audit
[/TD]
[TD]Other
[/TD]
[/TR]
[TR]
[TD]Meeting
[/TD]
[TD]Other
[/TD]
[/TR]
[TR]
[TD]Training
[/TD]
[TD]Deposits
[/TD]
[/TR]
[TR]
[TD]Training
[/TD]
[TD]Leadership
[/TD]
[/TR]
</tbody>[/TABLE]
Right now I have the following format values. However, as long as the text is listed in the types formatting is not affected. I'd like it to change if the content does not match the list specifically to the subject options.
=AND(NOT(ISBLANK(B8)),ISERROR(MATCH(B8,projectID,0)))
=AND(NOT(ISBLANK(C8)),ISERROR(MATCH(C8,taskID,0)))
[TABLE="width: 500"]
<tbody>[TR]
[TD]Subject Column B
[/TD]
[TD]Type Column C
[/TD]
[/TR]
[TR]
[TD]Audit
[/TD]
[TD]Deposits
[/TD]
[/TR]
[TR]
[TD]Audit
[/TD]
[TD]Other
[/TD]
[/TR]
[TR]
[TD]Meeting
[/TD]
[TD]Other
[/TD]
[/TR]
[TR]
[TD]Training
[/TD]
[TD]Deposits
[/TD]
[/TR]
[TR]
[TD]Training
[/TD]
[TD]Leadership
[/TD]
[/TR]
</tbody>[/TABLE]