Forum Discussion
Timbo14
Jul 31, 2019Copper Contributor
Data validation if statement multiple ifs
=IF(A3="850 HP",A7>16.74)=IF(A3="425 HP",A7>11.99)=IF(A3=”850 LPHP”, A7>13.24) I'm trying to force a different minimum entry value in A7 from a Drop down list vaule in A3. I can only make one if ...
- Jul 31, 2019
It's like
=IF(A3="850 HP",A7>16.74,IF(A3="425 HP",A7>11.99,IF(A3="850 LPHP", A7>13.24,TRUE)))
SergeiBaklan
MVP
It's like
=IF(A3="850 HP",A7>16.74,IF(A3="425 HP",A7>11.99,IF(A3="850 LPHP", A7>13.24,TRUE)))
Timbo14
Jul 31, 2019Copper Contributor
Works like a charm!! I've spent over a day trying different things and could not come up with a solution.
Your the best!
Thanks!!
- SergeiBaklanJul 31, 2019MVP
Timbo14 , you are welcome, glad to help