Forum Discussion
Sparky1825
Jul 06, 2023Copper Contributor
Formula / Logic Assistance
Hi all, Hoping someone might be able to help me crack a challenge I've been working on and off on for several days. So my objective is to report on what I'll call 'Good' or 'Bad' data by text or ...
- Jul 06, 2023
In F1:
=IF(A1="", "", IF(COUNTIFS($B$1:$B$10000, A1, $C$1:$C$10000, "<>A")=0, "Good", "Bad"))
Fill down as far as you want.
HansVogelaar
MVP
In F1:
=IF(A1="", "", IF(COUNTIFS($B$1:$B$10000, A1, $C$1:$C$10000, "<>A")=0, "Good", "Bad"))
Fill down as far as you want.
Sparky1825
Jul 06, 2023Copper Contributor
Thanks Hans, I had experimented with similar to this but clearly not quite cracked the right syntax. That'll work a treat! Good fix!