Reputation: 333
I have data that I would like to highlight if it is unique in the row.
The data is an export from a SQL
Table and I want to check that the data is setup correctly.
For example:
Product Plvl1 Plvl2 Plvl3 Plvl4
Product1 3.9 3.9 **4.1** 3.9
Product2 1.135 1.135 1.135 1.135
Product3 4 **5** 4 4
Upvotes: 3
Views: 1423
Reputation: 869
Select each Row alone or change apply to for each Row
You can use Highlight Cells
, Duplicate Values
and instead of Duplicate use the arrow and choose Unique
and choose the Format you want
Upvotes: 3
Reputation: 3875
Agree with Jeeped's answer. There is one more way that you could do this,
Upvotes: 2
Reputation:
Create a conditional formatting rule based upon the following formula,
=countif($b:$e, b2)=1
Upvotes: 6