谷歌浏览器的翻译功能在哪_如何在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,一经查实,立即删除!

相关文章

保存网络文章以供以后使用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…

我们生活在最好的时代

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驱动…

使用高级管理控制台获得对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 归类为非变动性算法,实际上它也可以算是变动性算法,取决于传入的第三个参数,即函数 指针。如果在函数内对容器元素做了修改,那么就属于变动性算法。 变动性算法源代码分析与使用示例…

如何在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中定…

使用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…

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. 保持计算机和软件的最新状态…

写一个简单的 django_post demo

1.新建一个django工程,其路由为下图 2.要做的是一个 简单的登录请求,以表单形式提交,html 部分代码如下 这里注意action指向的是路由的地址,index1后的views.login部分代码如下 这段代码指的是,如果login接收到的请求是…

日志收集

2019独角兽企业重金招聘Python工程师标准>>> ELK (ElasticSearch、Logstash、Kibana): https://my.oschina.net/itblog/blog/547250 转载于:https://my.oschina.net/zfscofield/blog/1625703

autocopy2u_借助AutoCopy简化Firefox中的文本复制和粘贴

autocopy2uLooking for an easy way to speed up copying and pasting in Firefox? Now you can reduce the amount of work that you have to do by half with AutoCopy. 是否在寻找一种简便的方法来加快Firefox中的复制和粘贴? 现在,您可以使用自动复…

僵尸进程处理方式

Linux服务器上,多少会出现一些僵尸进程,下面介绍如何快速寻找和消灭这些僵尸进程的方法 首先,我们可以用top命令来查看服务器当前是否有僵尸进程,在下图中可以看到僵尸进程数的提示,如果数字大于0,那么意味…

chromebook刷机_如何查看Chromebook的停产日期

chromebook刷机Google谷歌There comes a time in your Chromebook’s life when it no longer receives updates from Google. It’s inevitable and could be a lot sooner than you think. Here’s how to see your Chromebook’s scheduled end-of-life date. Chromebook一生…

如何在Google文档中的图片周围换行

If you want to insert an image or object into a document, it’s relatively simple. However, positioning and getting them to stay where you want can be frustrating. The wrap text feature in Google Docs makes all of this more manageable. 如果要将图像或对象插…

如何在Linux上使用history命令

Fatmawati Achmad Zaenuri/ShutterstockFatmawati Achmad Zaenuri / ShutterstockLinux’s shell saves a history of the commands you run, and you can search it to repeat commands you’ve run in the past. Once you understand the Linux history command and how to u…

mysql导入sqlserver数据库表

原文:https://zhidao.baidu.com/question/1114325744502691499.html 在Navicat for MySQL 管理器中,创建目标数据库(注意:因为是点对点的数据导入,要求sql server 中要导出的数据库名称和要导入到Mysql 中的数据库的名字相同)点击…

mac自带邮箱导出邮件_如何将电子邮件从Mac Mail导出到Notes应用程序

mac自带邮箱导出邮件Khamosh PathakKhamosh PathakIf you use the Mail app regularly, you’re used to archiving or flagging emails for later. But what if you want to save a particular message for future reference in the Notes app? Well, there’s a work-around…

Appium使用Python运行appium测试的实例

Appium使用Python运行appium测试的实例 一. Appium之介绍 https://testerhome.com/topics/8038 详情参考-- https://testerhome.com/topics/8038 Appium是一个移动端的自动化框架,可用于测试原生应用,移动网页应用和混合型应用,且…