Forum Discussion
Inesmateus
Jan 12, 2021Copper Contributor
Symmetrical values
Hello, I would like to know if there is a way, through formulas or conditional formatting to identify symmetrical values. For instance, 1 and -1, 100 and -100. Calculate the absolute value won't wor...
- Jan 15, 2021
It could be
=SUM(--(C2=-$C$2:$C$18))*IF(C2>0,COUNTIF($C$2:$C2,C2)=1,1)which highlight only FIRST met positive number and ALL symmetric negative numbers for each pair. If only first negative is needed, when instead of IF use only COUYNTIF within it.
SergeiBaklan
Jan 13, 2021Diamond Contributor
If with conditional formatting may apply the rule as
with formula
=SUM(--(C2=-$C$2:$C$18))- InesmateusJan 15, 2021Copper ContributorThank you for the solution.
However it gets a limitation: when the database has multiples entries with the same positive value (as per attachment) it automatically highlight all the entries and I just need to highlight t one of them in order to clear the negative one.
Do you have any workaround?
Thanks- SergeiBaklanJan 15, 2021Diamond Contributor
It could be
=SUM(--(C2=-$C$2:$C$18))*IF(C2>0,COUNTIF($C$2:$C2,C2)=1,1)which highlight only FIRST met positive number and ALL symmetric negative numbers for each pair. If only first negative is needed, when instead of IF use only COUYNTIF within it.
- InesmateusJan 15, 2021Copper ContributorThe first workaround works perfectly.
Thank you very much.
Best regards