A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hi AnneLall,
Try this if it helps:
=IFS(A2<3000,0,AND(A2>=3000,A2<=4999),A2*0.02,A2>=5000,A2*0.04)
Regards,
Ryan
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi, I need help.
i need a formula: if cell A2 is less than 3000, then the answer is 0, if A2 is between 3000 and 4999, then the result is A2 x 0.02, if A2 is equal to or greater than 5000, the result is A2 x 0.04
[Moved from: Excel/Other/Unknown]
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Hi AnneLall,
Try this if it helps:
=IFS(A2<3000,0,AND(A2>=3000,A2<=4999),A2*0.02,A2>=5000,A2*0.04)
Regards,
Ryan
it doesn't work, maybe i did something wrong :(
You are welcome.
thank Yuo :)
Hi,
Try this formula:
=LOOKUP(A2,{0,3000,5000},A2*{0,0.02,0.04})
Hope this helps.