谷歌浏览器的翻译功能在哪_如何在Google表格中使用AND和OR功能

谷歌浏览器的翻译功能在哪

谷歌浏览器的翻译功能在哪

The Google Sheets logo.

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。

An AND response of TRUE in cell A2 to three arguments on a Google Sheets spreadsheet.

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。

A FALSE response in cell A3 to three arguments on a Google Sheets spreadsheet.

使用或功能 (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结果,您使用的所有参数都必须不正确。

The OR function and three arguments with a TRUE result in a Google Sheets spreadsheet.

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响应,因为两个公式中的所有三个参数都不正确。

The OR function used in Google Sheets, with no correct arguments, resulting in a FALSE response

对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。

The IF function with a simple argument in a Google Sheets spreadsheet.

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值(在这种情况下为“是”)。

The IF function with a nested AND formula used to provide multiple arguments in a Google Sheets spreadsheet.

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在四个中有两个不正确的参数。

The IF function with a nested OR formula providing multiple arguments that result in both TRUE and FALSE responses in a Google Sheets spreadsheet.

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/

谷歌浏览器的翻译功能在哪

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/278406.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Reptile:requests + Xpath 爬取段子网的段子

2019/1/24 中午路飞学成 爬虫课程 实验及笔记。 Xpath是路飞爬虫课程中老师说的三种解析方式之一,前面是re正则表达式的解析方式,现在是xpath的解析方式,后面还有一个是bs4的解析方式。 re其实我理解的很困难,而且到现在都还不怎么…

Android 系统权限

Android 是一个权限分隔的操作系统,其中每个应用都有其独特的系统标识(Linux 用户 ID 和组 ID)。系统各部分也分隔为不同的标识。Linux 据此将不同的应用之间、应用与系统之间分隔开来 ##一、安全架构 Android 安全架构的中心设计点是&#x…

【转载】负数的二进制

https://jingyan.baidu.com/article/29697b9106eb52ab21de3c7a.html 将十进制的负数变成二进制数的过程: 1.写出绝对值的二进制码(原码) 2.取反(反码) 3.1,(补码) 同理,将二进制的负…

保存网络文章以供以后使用Instapaper阅读

Have you ever come across a bunch of great articles that you want to read online, but just don’t have the time? Today we take a look at an online service that allows you to read your articles later, either online, or on an iPhone, or eReader. 您是否曾经遇…

谷歌chrome xp_将非Google任务列表添加到Chrome

谷歌chrome xpMost people rely on a task list to help them remember what they need to do but not everyone wants one that is tied to a Google account. If you have been wanting an independent tasks list then join us as we look at the Tasks extension for Googl…

学习笔记 - MarkDown 语法

学习参考网址:https://www.appinn.com/markdown/index.html # **gitskill**## 标题 ># 这是 H1 >## 这是 H2 >###### 这是 H6## 区块引用 Blockquotes > This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipisci…

[BZOJ4671]异或图

description BZOJ 定义两个结点数相同的图\(G1\)与图\(G2\)的异或为一个新的图\(G\), 其中如果\((u,v)\)在\(G1\)与\(G2\)中的出现次数之和为\(1\), 那么边\((u,v)\)在\(G\)中, 否则这条边不在\(G\)中. 现在给定\(s\)个结点数相同的图\(G1...s\),设\(S{G1,G2,...,Gs},\) 问\(S\…

我们生活在最好的时代

2019独角兽企业重金招聘Python工程师标准>>> 没规划的人生叫拼图,有规划的人生叫蓝图; 没目标的人生叫流浪,有目标的人生叫航行! 我们生活在最好的时代:在认知和学习机会上,人人平等&#xff0c…

MapReduce详解和WordCount模拟

最早接触大数据,常萦绕耳边的一个词「MapReduce」。它到底是什么,能做什么,原理又是什么?且听下文讲解。 是什么 MapReduce 即是一个编程模型,又是一个计算框架,它充分采用了分治的思想,将数据处…

无法创建系统映像_如何创建USB驱动器的映像

无法创建系统映像You can back up your USB drive by creating a saved image. You can then take that saved image and clone multiple USB sticks. This guide shows you how to create an image of your USB drive using Windows 10. 您可以通过创建保存的图像来备份USB驱动…

UGUI事件之Drag拖拽事件

UI事件之Drag拖拽事件2.UGUI 事件命名空间   当我们需要使用 UGUI 中的事件的时候,需要在脚本内引入专有命名空间:   using UnityEngine.EventSystems;----------------------------------2.拖拽相关事件接口----------------------------------1.三…

java 通过cookie判断是否登陆

protected void doGet(HttpServletRequest req, HttpServletResponse resp)throws ServletException, IOException {// 判断cookie是否有登录信息Cookie[] cookies req.getCookies();boolean isLogin false;for(Cookie c : cookies){if("loginInfo".equals(c.getNa…

使用高级管理控制台获得对Windows Home Server的扩展访问

Windows Home Server is easy to setup and use so anyone with basic computer knowledge can operate their own server. But what if you’re an advanced user and want more control over various administrative functions? The Advanced Admin Console Addin gives you…

变动性算法源代码分析与使用示例(copy_backward、 transform、 replace_copy_if 等)

首先回顾前面的文章,我们把for_each 归类为非变动性算法,实际上它也可以算是变动性算法,取决于传入的第三个参数,即函数 指针。如果在函数内对容器元素做了修改,那么就属于变动性算法。 变动性算法源代码分析与使用示例…

[转]QDir类及其用法总结

直接给出原文链接:QDir类及其用法总结 转载于:https://www.cnblogs.com/rainbow70626/p/10330643.html

如何在Outlook中的电子邮件上显示快速操作按钮

There are probably actions you regularly perform in Outlook, such as deleting, archiving, and marking things as read. Here’s how to use Quick Action buttons to add one-click options that appear over every email to perform each action. 您可能会在Outlook中定…

c++读取和写入TXT文件的整理

c读取和写入TXT文件的整理 #include "stdafx.h" #include <iostream> //无论读写都要包含<fstream>头文件 #include <fstream> #include <iomanip> using namespace std;int main() {//ifstream从文件流向内存的ifstream表示文件输入流…

使用RestTemplate时报错java.lang.IllegalStateException: No instances available for 127.0.0.1

我在RestTemplate的配置类里使用了 LoadBalancedComponentpublic class RestTemplateConfig { Bean LoadBalanced public RestTemplate restTemplate(){ return new RestTemplate(); }}或者 再调用Autowiredprivate RestTemplate restTemplate;必须使用应用名作为代替ip:端口&a…

sh变量特性(3)默认特性

变量说明$0当前脚本的文件名$n传递给脚本或函数的参数&#xff0c;n是数字&#xff0c;第n个参数$#传递给脚本或函数的参数个数$*传递给脚本或函数的所有参数$传递给脚本或函数的所有参数。被””包含时&#xff0c;与$*稍有不同$?上个命令的退出状态&#xff0c;或函数返回值…

zune linux_更新您的Zune Player软件

zune linuxKeeping your computer and software up to date is very important in keeping everything running smooth and secure. It’s also important to keep your geeky gadgets updated as well. Here we take a look at updating a Zune HD. 保持计算机和软件的最新状态…