Hello all, I am trying to conditionally format the "Completed?" column based on criteria. If "Completed?" equals N but ONLY if there isn't another row with the same Acct # and a completed of Y. So for the example below Acct # 12345 shows up multiple times but Completed should NOT be highlighted because the third entry for that acct # is Y. Similarly, for acct # 30121 it should be highlighted for N because it's the only entry. Any ideas? Appreciate the help!
[TABLE="width: 200"]
<tbody>[TR]
[TD]Acct #[/TD]
[TD]Accts[/TD]
[TD]Completed?[/TD]
[/TR]
[TR]
[TD]12345[/TD]
[TD]2[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]12345[/TD]
[TD]1[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]12345[/TD]
[TD]3[/TD]
[TD]Y[/TD]
[/TR]
[TR]
[TD]30121[/TD]
[TD]1[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]20984[/TD]
[TD]1[/TD]
[TD]Y[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 200"]
<tbody>[TR]
[TD]Acct #[/TD]
[TD]Accts[/TD]
[TD]Completed?[/TD]
[/TR]
[TR]
[TD]12345[/TD]
[TD]2[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]12345[/TD]
[TD]1[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]12345[/TD]
[TD]3[/TD]
[TD]Y[/TD]
[/TR]
[TR]
[TD]30121[/TD]
[TD]1[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]20984[/TD]
[TD]1[/TD]
[TD]Y[/TD]
[/TR]
</tbody>[/TABLE]