Google Sheets IF THIS AND ELSE OR

╄→гoц情女王★ 提交于 2019-12-11 16:08:21

问题


I'm having some issues trying to accomplish the below in a google sheet. What I'd like to have happened is:

IF Cell O1 has a value of "Yes" AND Cell E1 is <= 25,000 
Cell P1 = "DEFM-HW-A"

OR Cell O1 has a value of "Yes" AND Cell E1 is > 25,000 
Cell P1 = "DEFM-HW-B"

OR IF O1 = "No"
Cell P1 = "No"

回答1:


Use this in P1:

=IF(O1="Yes",IF(E1<=25000,"DEFM-HW-A","DEFM-HW-B"),"No")


来源:https://stackoverflow.com/questions/54712739/google-sheets-if-this-and-else-or

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!