Forum Discussion
Dadojohn
Jan 12, 2019Copper Contributor
simple "if" formula that i cant work out.
Hi,
Can some please write the "if" formula for below.
Thanks.
If F22 is equal to or greater than 9000 but less than 15000 then put 5% of the value of F22 into E25. If F22 is equal to or greater than 15000 then put 6% of the value of F22 into E25.
- Naveen1992Brass Contributor
Hi Dadojohn
try this:-
=IF(AND(F22>=9000,F22<15000),E25+F22*5/100,IF(F22>=15000,E25+F22*6/100,"N/A"))
if not get ur solution, than share some sample data
Regards
Naveen
- Naveen1992Brass Contributor
Hi Dadojohn
try this:-
=IF(AND(F22>=9000,F22<15000),E25+F22*5/100,IF(F22>=15000,E25+F22*6/100,"N/A"))
if not get ur solution, than share some sample data
Regards
Naveen
- Eva VogelSteel Contributor
- Eva VogelSteel Contributor
Hi,
That could be
=F22*IF(F22>=15000,0.06, IF(F22>9000,0.05,0))