IF OR语句


26

您如何在Google电子表格中执行IF ... OR ... THEN语句?在PHP中,我可以这样做:

if($C7 == "U.S.A." || $C7 == "Canada"){ ...

如何与电子表格公式相同?

此刻我有

= IF ( C7 = "U.S.A." , "The Americas" , "Europe" )

我想说的是C7 =“美国”还是“加拿大” ...

注意:我应该能够(并广泛尝试)使用Google,但是搜索引擎会忽略IF和OR一词。

Answers:



0

如果您的声明较长,则可以regexmatch()改用。

regexmatch(C7,"(U.S.A.|Canada|Other_area_name|Other_area_name2|Other_area_name3)")

通过添加|符号分隔。

有关更复杂的用法,请参阅官方文档

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.