I have a sheet created where I need to 'flag' rows that are in conflict based on a number of criteria:
- Is the 'Active' column (which is also a flag) checked?
- Does the value in the 'Segment Name' column appear on other rows of the sheet where the 'Division' column = 'HQ'?
I have the formula below which works EXCEPT it is comparing all the values in the 'Segment Name' column to each other instead of only looking to see if the value on that row is a duplicate AND the 'Division' column = 'HQ'.
=IF(COUNTIFS([Segment Name]:[Segment Name], [Segment Name]@row, [Active?]:[Active?], =1) > 1, 1)
Any thoughts?