带有“超过”的多个 if 条件和“小于”价值观
我们如何使用 IF() 条件编写下面这些语句及其各自的值?
- 如果 0 等于或小于 8,则 $0.00
- 如果 9 等于或小于 18,则 $10.00
- 如果 19 等于或小于 - 37,则 $20.00
- 如果 38 等于或小于 - 51,则 $30.00
- 如果等于或大于 53, 60.00 美元
经过几天的试用后,我无法理解它。希望有人能为我解决这个问题。
How do we write these statements and their respective values below using the IF() conditions?
- If 0 to equal or less than 8, $0.00
- If 9 to equal or less than 18, $10.00
- If 19 to equal or less than - 37, $20.00
- If 38 to equal or less than - 51, $30.00
- If equal to or more than 53, $60.00
I can't wrap my head around it after a couple of days of trials. Hope someone can clear this up for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
@player0 的答案是我个人会使用的答案。
如果必须使用 IF 条件,则以下内容可能有用:
@player0's answer is the answer I personally would use.
If you must use IF-conditions, then the following might be useful:
使用:
请参阅:https://webapps.stackexchange.com/q/123729/186471
use:
see: https://webapps.stackexchange.com/q/123729/186471