IF formula with multiple ranges
Solved
Mika
-
Mika -
Mika -
Hello,
I'm working on a table where I want to display different results in a cell based on intervals...
Basically, if A1 is less than 10, then I multiply the result by 65%, if A1 is in the range of 11 to 20, then I multiply by 80%, and finally, if A1 is greater than or equal to 21, then I multiply by 88%.
Depending on the value of A1, I want my cell to automatically calculate the percentage...
Could someone please help me?
Thank you in advance
Configuration: Windows / Opera Next 57.0.3098.116
I'm working on a table where I want to display different results in a cell based on intervals...
Basically, if A1 is less than 10, then I multiply the result by 65%, if A1 is in the range of 11 to 20, then I multiply by 80%, and finally, if A1 is greater than or equal to 21, then I multiply by 88%.
Depending on the value of A1, I want my cell to automatically calculate the percentage...
Could someone please help me?
Thank you in advance
Configuration: Windows / Opera Next 57.0.3098.116
It would be helpful to know where your different values (to multiply and others) are so that I can do better.
If you wish, you can send me your file via this site:
https://www.cjoint.com/
and paste the link in your reply.
You didn't really follow what I told you as a formula :)
Here is your corrected formula:
=IF(A2<=59000,A2*0.65,IF(A2<=149000,A2*0.8,A2*0.88))