Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade Teachers Spaces Get Certified Upgrade Teachers Spaces
   ❮   
     ❯   

Google Sheets AND Function


AND Function

TheAND function is a premade function in Google Sheets, which returnsTRUE orFALSE based on two or moreconditions.

It is typed=AND and takes two or more conditions.

=AND([logical_expression1],[logical_expression2, ...])

Theconditions are referred to as[logical_expression1],[logical_expression2], and so on.

The conditions can check things like:

  • If a number isgreater than another number>
  • If a number issmaller than another number<
  • If a number or text isequal to something=

Note: The AND function is often used together with theIF function.


Example AND Function

Check if the Pokemon type is fireand has speedgreater than 70:

The function returns "TRUE" or "FALSE".

Copy Values

ExampleAND function, step by step:

  1. Select the cellD2
  2. Type=AND
  3. Click theAND command

  1. Specify the first conditionB2="Fire"
  2. Type,
  3. Specify the second conditionC2>70
  4. Hit enter

Note: You can add more conditions by repeating steps 5-6 before hitting enter.

Since the value in cellB2 is not "Fire" the first condition isFALSE.

Since the value in cellC2 is less than 70 the second condition is alsoFALSE.

All conditions need to beTRUE for the AND function to returnTRUE.

Note: Text values needs to be in quotes: " "

The function can be repeated with thefilling function for each row to perform the same check for each Pokemon:

Now, each row has a check for Fire Typeand Speed greater than 70:

Only Charmeleon and Charizard both have Fire type and speed greater than 70, so the function returns "TRUE".



Example AND Function (with IF)

Combining the AND function with anIF function lets you checkmultiple conditions for the IF function:

Note: The IF function lets you specify the return values.

The IF function is typed=IF and has 3 parts:

=IF(logical_expression,value_if_true,value_if_false)

The AND function takes the place of thelogical_test condition.

Here, theIF function returns "Yes" or "No".

ExampleAND function as the condition forIF function, step by step:

  1. Select cellC2
  2. Type=IF
  3. Click theIF command

  1. TypeAND
  2. Click theAND command

  1. Specify the first conditionB2="Fire"
  2. Type,
  3. Specify the second conditionC2>70
  4. Type),
  5. Specify the value"Yes" for when both conditions areTRUE
  6. Type,
  7. Specify the value"No" for when either, or both, conditions areFALSE
  8. Type) and hit enter

The function can be repeated with thefilling function for each row to perform the same check for each Pokemon:

Now each row has a check for both being Fire type and Speed greater than 70:

Only Charmeleon and Charizard both have Fire type and speed greater than 70, so the function returns "Yes".



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.


[8]ページ先頭

©2009-2025 Movatter.jp