谷歌浏览器的翻译功能在哪
If you’ve ever wanted to check whether data from your Google Sheets spreadsheet meets certain criteria, you can use AND and OR. These logical functions give you TRUE and FALSE responses, which you can use to sort through your data.
如果您曾经想查看Google表格电子表格中的数据是否满足某些条件,则可以使用AND和OR。 这些逻辑函数为您提供TRUE和FALSE响应,您可以使用它们对数据进行排序。
If you use AND with multiple arguments, all of those arguments must be true to get a TRUE response; otherwise, AND responds with FALSE. If you use OR, only one argument has to be true for OR to provide a TRUE response.
如果将AND与多个参数一起使用,则所有这些参数都必须为true才能获得TRUE响应; 否则,AND响应为FALSE。 如果使用OR,则OR只需一个参数即可为TRUE,以提供TRUE响应。
You can use AND and OR separately or within other functions, like IF.
您可以单独使用AND和OR,也可以在其他函数(例如IF)中使用。
使用AND功能 (Using the AND Function)
You can use the AND function on its own or combined with other functions to provide a logical (TRUE or FALSE) test.
您可以单独使用AND函数,也可以将其与其他函数结合使用以提供逻辑(TRUE或FALSE)测试。
To get started, open a Google Sheets spreadsheet and click an empty cell. Type =AND(Argument A, Argument B)
and replace each argument with the criteria you want to use. You can use as many arguments as you’d like, but you must have at least one for AND to work.
首先,请打开Google表格电子表格,然后单击一个空白单元格。 键入=AND(Argument A, Argument B)
并将每个参数替换为要使用的条件。 您可以根据需要使用任意多个参数,但是必须至少具有一个参数才能使AND起作用。
In the example below, we used three arguments. The first argument is the simple calculation of 1+1=2.
在下面的示例中,我们使用了三个参数。 第一个参数是1 + 1 = 2的简单计算。
The second argues that the cell E3 equals the number 17.
第二种说法是单元格E3等于数字17。
Finally, the third argues that the value of cell F3 (which is 3) is equal to the calculation of 4-1.
最后,第三种观点认为,单元格F3的值(为3)等于4-1的计算。
As all three arguments are true, the AND formula responds with TRUE in cell A2. If we change any of these arguments, it will cause the AND formula in A2 to change the response from TRUE to FALSE.
由于所有三个参数均为真,因此AND公式在单元格A2中以TRUE响应。 如果我们更改这些参数中的任何一个,它将导致A2中的AND公式将响应从TRUE更改为FALSE。
In the example below, the AND formula in cell A3 has two correct arguments and one that’s incorrect (F3=10, while F3 actually equals 3). This causes AND to respond with FALSE.
在下面的示例中,单元格A3中的AND公式有两个正确的参数,一个不正确(F3 = 10,而F3实际上等于3)。 这导致AND响应为FALSE。
使用或功能 (Using the OR Function)
While AND requires all the arguments it uses to be true, the OR function only requires one to be true for OR to respond with TRUE.
AND要求它使用的所有参数都为true,而OR函数仅要求一个参数为true,OR才能使用TRUE进行响应。
Like AND, you can use the OR function on its own or combine it with other functions. The same as with AND, you can use as many arguments as you want, but you must have at least one for it to work.
与AND一样,您可以单独使用OR函数,也可以将其与其他函数结合使用。 与AND相同,您可以根据需要使用任意多个参数,但是必须至少有一个参数才能起作用。
To use OR, click an empty cell and type =OR(Argument A, Argument B)
, and replace the arguments with your own.
要使用OR,请单击一个空单元格,然后键入=OR(Argument A, Argument B)
,然后用您自己的参数替换。
In the example below, the formula using OR in cell A2 has one incorrect argument out of three (F3=10, where F3 actually equals 3).
在下面的示例中,在单元格A2中使用OR的公式具有三个不正确的参数(F3 = 10,其中F3实际上等于3)。
Unlike when you use AND, one incorrect argument out of three will result in a TRUE result. For a FALSE result, all the arguments you use must be incorrect.
与使用AND不同,在三个参数中有一个不正确将导致结果为TRUE。 对于FALSE结果,您使用的所有参数都必须不正确。
In the example below, the OR formulas in cells A4 and A5 returned a FALSE response because all three arguments in both formulas are incorrect.
在下面的示例中,单元格A4和A5中的OR公式返回了FALSE响应,因为两个公式中的所有三个参数都不正确。
对IF使用AND和OR (Using AND and OR with IF)
Because AND and OR are logical functions with TRUE and FALSE responses, you can also use them with IF. When you use IF, if an argument is TRUE, it returns one value; otherwise, it returns another value.
因为AND和OR是具有TRUE和FALSE响应的逻辑函数,所以也可以将它们与IF一起使用。 使用IF时,如果参数为TRUE,它将返回一个值;否则,将返回一个值。 否则,它将返回另一个值。
The format of a formula using IF is =IF(Argument, Value IF TRUE, Value IF FALSE)
. For example, as shown below, =IF(E2=1,3,4)
causes IF to return the number 3 if cell E2 equals 1; otherwise, it returns the number 4.
使用IF的公式的格式为=IF(Argument, Value IF TRUE, Value IF FALSE)
。 例如,如下所示,如果单元格E2等于1,则=IF(E2=1,3,4)
导致IF返回数字3; 否则,返回数字4。
Because IF only supports a single argument, you can use AND and OR to introduce complex logical tests with multiple arguments.
由于IF仅支持单个参数,因此可以使用AND和OR引入具有多个参数的复杂逻辑测试。
在IF上使用AND (Using AND with IF)
To use AND within an IF formula, type =IF(AND(AND Argument 1), Value IF TRUE, Value IF FALSE)
, and replace your AND argument (or arguments), and IF TRUE and IF FALSE values.
要在IF公式中使用AND,请键入=IF(AND(AND Argument 1), Value IF TRUE, Value IF FALSE)
,并替换您的AND参数(或多个参数)以及IF TRUE和IF FALSE值。
In our example below, we used IF with a nested AND formula in cell A2 with four arguments. All four arguments are correct, so the IF TRUE value (in this case, “Yes,”) is returned.
在下面的示例中,我们在单元格A2中使用具有嵌套AND公式的IF和四个参数。 所有四个参数都是正确的,因此返回IF TRUE值(在这种情况下为“是”)。
In cell A3, a similar IF with AND formula contains two incorrect arguments. As AND requires all arguments to be correct, IF returns the IF FALSE value, which is a different text value (“No”).
在单元格A3中,具有AND公式的类似IF包含两个错误的参数。 由于AND要求所有参数正确,因此IF返回IF FALSE值,该值是不同的文本值(“否”)。
与IF一起使用OR (Using OR with IF)
The same as with AND, you can also use OR with IF to create a complex logical test. Only one OR argument has to be correct for IF to return a TRUE response.
与AND相同,您也可以将OR与IF一起使用以创建复杂的逻辑测试。 对于IF返回TRUE响应,只有一个OR参数必须正确。
To use OR with IF, click an empty cell and type =IF(OR(OR Argument 1), Value IF TRUE, Value IF FALSE)
.
要将OR与IF一起使用,请单击一个空单元格,然后键入=IF(OR(OR Argument 1), Value IF TRUE, Value IF FALSE)
。
Replace the OR argument (or arguments), and your IF TRUE/FALSE values, as required.
根据需要替换OR参数(或多个参数)以及IF TRUE / FALSE值。
In our examples below, the two IF with OR formulas in cells A2 and A3 returned the IF TRUE text value (“Yes”). All four arguments are correct in the A2 IF with OR formula, while A3 has two incorrect arguments out of four.
在下面的示例中,单元格A2和A3中的两个具有OR公式的IF返回IF TRUE文本值(“是”)。 在带有OR公式的A2 IF中,所有四个参数都是正确的,而A3在四个中有两个不正确的参数。
In cell A4, all four arguments in the IF with OR formula are incorrect. This is why the overall IF formula returns the IF FALSE text value (“No”), instead.
在单元格A4中,具有OR公式的IF中的所有四个参数都不正确。 这就是为什么整个IF公式返回IF FALSE文本值(“否”)的原因。
翻译自: https://www.howtogeek.com/447561/how-to-use-the-and-and-or-functions-in-google-sheets/
谷歌浏览器的翻译功能在哪