Hello,
(edit : sorry, I mixed French and English. SOMMEPROD is French, so it should be SUMPRODUCT instead)
I have the following table :
I want to format cell in column A if their value is found in column C (without looking in column B)
I end up with that formulas but it does look in column A, B, C and I did not find a way to look in a single column : IF(ISBLANK(A1);"";SUMPRODUCT($A$1:$C$6=A1)*1>1)
; And Julien, Bruno, Julien, Martin, Pierre are formated.
But I just want to target and format Bruno and Martin, as these 2 only are in column C. Julien (in the same column) and Pierre (in the column B) should not be targeted.
I tried to replace $A$1 by $C$1 but no luck : IF(ISBLANK(A1);"";SUMPRODUCT($C$1:$C$6=A1)*1>1)