'Highlight or match three columns cells data
Solution 1:[1]
Assuming Name
is in A1 try selecting A:C and a CF formula rule of:
=COUNTIFS($A:$A,$A1,$B:$B,$B1,$C:$C,$C1)>1
with Fill of choice.
Solution 2:[2]
SUMPRODUCT Version
For the data range A2:C5
use Conditional Formatting and:
=SUMPRODUCT(($A$2:$A$5=$A2)*($B$2:$B$5=$B2)*($C$2:$C$5=$C2))>1
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | pnuts |
Solution 2 | pnuts |