Forum Discussion
under, between, over
Shouldn't the last one be "if answer is over 12"?
Let's say the input is in cell A1, and the multiplication factor in B1.
In another cell:
=A1*B1*IF(A1<10,1000,IF(A1<=12,2000,3000))
if under 10000 multiply 1000 x A1,
if between 10000 - 12000 multiply 2000 x A1,
if over 12000 multiply 3000 x A1.
- HansVogelaarFeb 09, 2021MVP
- insight13Feb 09, 2021Copper Contributor
HansVogelaar Thank you for your replies and help. I tried to modify to and received message "you've entered too many arguments for this function". You've been helpful because I had 3 different calculations, and you consolidated into 1! Allow me to be more specific and see if we can resolve.
the 3 calculations are all based on A1.
if A1 is under 10,000, multiply 1,000 by B1
if A1 is between 10,000 and 12,0000, multiply 2,000 by B1
if A1 is over12,000, multiply 3,000 by B1
I hope this makes more sense. Thank you for you help!
=IF(M20<10000, E20*1000, IF(M20=10000, M20<=12000, E20*2000), IF(M20>12000, 3000*E20)))
- SergeiBaklanFeb 09, 2021Diamond Contributor