Forum Discussion
EScotty27
Dec 14, 2022Copper Contributor
Help with formula my coworker made and I can't adjust
I need help fixing a formula that will exclude all answers of a specific value, despite them meeting the current criteria of the formula. For example, in the following formula, I need it to exclude E...
- Dec 14, 2022
=IF(OR(COUNTIF(D12,"*"&Flower[Flower]&"*"),AND(E12>=1.75,E12<>4.25)),E12,0)
(I omitted SUM since it doesn't do anything here)
HansVogelaar
Dec 14, 2022MVP
=IF(OR(COUNTIF(D12,"*"&Flower[Flower]&"*"),AND(E12>=1.75,E12<>4.25)),E12,0)
(I omitted SUM since it doesn't do anything here)
EScotty27
Dec 15, 2022Copper Contributor
This worked! Thanks so much!