I am trying to use the result of a formula to trigger conditional formatting.
I am using the following formula to check if the value in cell E2 appears anywhere in cells A2 to A9967. If it does appear the word "duplicate" appears (in my particular case this formula is in cell F2 so "duplicate' appears in F2).
=IF(COUNTIF($A$2:$A$9967,E2),"DUPLICATE","")
In this regard everything is fine, however, if I simply typed "duplicate" into F2 I have no problems getting conditional formatting to shade cell E2 a particular color BUT, I can't get the value returned from a formula (Duplicate) to trigger the conditional formatting.
The problem comes because I want to paste new values into the E column and have conditional formatting automatically shade those duplicates cells.
I enabled the developer mode and made sure EnableFormatConditionsCalculation
is set to true.
Any assistance would be greatly appreciated.