I am using Excel 2010. Using CONDITIONAL FORMATTING I am trying to highlight cells based on the following criteria.
Sheet 1 ID (A2)
must equal Sheet 2 ID (A2)
(they must match)
and then if Sheet 2 Action
equals "Insert", highlight the cell.
What I've tried=AND(Sheet1!$A2=Sheet2!$A2,Sheet2!$B2="INSERT")
I would expect the cells with ID's 10, 4 and 2 to be highlighted in the linked image. enter image description here
Appreciate any help. Thanks.
=IFERROR(VLOOKUP($A2,Sheet2!$A$2:$B$11,2,FALSE)="Insert",FALSE)
– jsheeran