Search
Close this search box.

A 2024 Tutorial for Google Sheets IF Then Calculations

To use if-then calculations in Google Sheets, you’ll need to use a formula. I’ll outline a few ways to do this below. I will also include the syntax for each, so you know what you need to include to make your if this, then that calculation work.

Dependant Formulas in Google Sheets

Google Sheets incorporates various features that make working much easier for us, such as the SUMIF, IFNA, and IF CONTAINS functions. The Google Sheet IF THEN function is one of those fantastic features. The IF formula in Google Sheets can be used to check a condition and then return a specified value if it is TRUE or return a different specified value if FALSE.

You can take marking exam scores as an example. When a person wants to simplify the task of marking whether a student passed or not, they can use the if then formula Google Sheets provides to return “Pass” if the score is greater than the set value. Otherwise, “Fail.”

In other words, if you want to run a logical test in a Google Sheets formula that returns different results depending on whether the test is TRUE or FALSE, you must use the Google Sheets IF else formula. You can use various formulas to get the function to work how you need it to. In this article, we will be discussing how to put it to use in Google Sheets. Read on to learn more.

How to Use IF then in Google Sheets

I made a video to show exactly how to use the IF THEN formula in Google Sheets. It includes a practical example.

If you’d rather follow along with screenshots and text, please read on.

I’ll start with a six-step breakdown. This is a super simple way to show a specific result based on another cell. Here’s how to do IF THEN in Google Sheets:

  1. Go to the desired cell range where you want to display the results.
  2. Type in the equal to sign (=) followed by IF(
  3. Select the cell reference you want to check and add the condition.
  4. Add a comma and write the value to return if true in quotation marks
  5. Add a comma and write the value to return if False in quotation marks
  6. Click Enter.

Google Sheets IF THEN Formula Syntax

Now that we understand what the Google spreadsheet IF THEN formula does, let’s look into the basic syntax of the function. It can be written as:

IF(logical_test, value_if_true, value_if_false)

The logical_test in the syntax usually is the condition you check in the function. It is an expression or reference to a cell containing an expression that would return a logical value, such as TRUE or FALSE.

One argument in the Google Sheet IF formula is value_if_true, which is the value the function returns if the logical_test is TRUE.

Lastly, the value_if_false, an optional parameter, is the value the function returns if logical_expression is FALSE. If the user hasn’t specified the value_if_false argument and the checked condition was not met, the result of the function would return FALSE.

How to Do IF THEN in Google Sheets (Step-By-Step Guide)

Below is a sample of a car purchasing decision table. It contains the buyer’s budget and the expected mileage of the vehicle. First, I will use the IF formula to determine whether the price is “Within Budget” or “Over Budget”:

Here’s how to use the IF function in Google Sheets:

Step 1: Go to the desired cell range where you want to display the results.

 Go to the desired cell

Step 2: Type in the equal to sign (=) followed by IF

Type in the equal to sign (=) followed by IF

Next we’ll be using the IF syntax of

=IF(logical_test,"Value_if_True", "Value_if_False")

Here’s how we substitute the values into the formula:

Step 3: Select the cell reference you want to check and add the condition.

cell reference for the formula

Step 4: Add the condition. Since we’re looking for cars below our budget, our condition is B6<B2.

 Add the condition.

Step 5: Add a comma and write the value to return if true in quotation marks. Our value is “Within Budget”

 value to return if true

Step 6: Add a comma and write the value to return if False in quotation marks. Our value is “Over Budget”

 value to return if false

Step 7: Click Enter and drag the small circle at the bottom right of the cell to fill in the corresponding cells.

Fill in the rest of the cells

In the screenshot above, I have used the logical expression B6<B2, which means if the value in cell B6 is lower than the value in cell B2 then the “Value_if_True” should be displayed. Otherwise, the “Value_if_False” should be indicated.

We’ve entered “Within Budget” as our Value_if_True and “Over Budget” as our Value_if_False.

Nested IF Statements in Google Sheets

You can nest multiple IF statements in Google Sheets into the same formula to perform a longer, more complex logical test now that you know how to create an IF function with one statement. There are several ways to use an IF function in Google Sheets, including performing calculations in the value section.

Nesting AND/OR with IF Statements

Since the IF function performs logical tests with TRUE or FALSE outcomes, other logical functions such as AND and OR can be nestled within an IF formula. This enables you to run a preliminary test with multiple criteria. You must note that the AND function requires that all test criteria be met for a TRUE result to be displayed. OR a TRUE result needs only one of the test criteria to be correct.

Here’s how we would add a nested AND statement to our above example:

Here we want to use a combination of IF and AND to add a second parameter for the IF function to check, like so:

=IF(AND(Logical_Expression_1, Logical_Expression_2), "Value_if_True", "Value_if_False")
Example spreadsheet

In the screenshot above, I have followed the same process for adding an IF statement, only this time, I have added an extra logical expression to check. Now we are also making sure the mileage is under 10800 using the logical expression C6<B3.

To use IF AND, you must simply substitute into these formulas:

=IF(AND(AND Argument 1, AND Argument 2), value_if_true, value_if_false)

You can add as many AND arguments as you like or use IF OR:

=IF(OR(OR Argument 1, OR Argument 2), value_if_true, value_if_false)

Step 1: Go to the desired cell range where you want to display the results.

desired cell range

Step 2: Type in the equal to sign (=) followed by IF

Type in the equal to sign (=) followed by IF

Step 3: Type the AND function.

Image21

Step 4: Add the first condition. Then add a comma.

 Add the first condition

Step 5: Add the second condition. Since we’re looking for cars below the mileage our condition is C6<B3

Add the second condition

Step 6: Close the brackets and add a comma.

Close the brackets and add a comma.

Step 7: Write the value to return if true in quotation marks. Our value is “Suitable for Purchase”

Write the value to return if true

Step 8: Add a comma and write the value to return if False in quotation marks. Our value is “Unsuitable for Purchase”

Write the value to return if false

Step 9: Click Enter and drag the small circle at the bottom right of the cell to fill in the rest of the cells.

Results of the IF then formula

Using If-Then Statements With a Calculation

We’ve shown you how to use the Google Sheets if then formula with text but You can also use IF then with calculations. This means that if the conditions are met then the formula should return the results of a calculation . Let’s look at our example spreadsheet

example spreadsheet

We can show the difference if the price is over the budget.

Here’s how:

Step 1: Go to the desired cell range where you want to display the results.

Step 2: Type in the equal to sign (=) followed by IF

Type in the equal to sign (=) followed by IF

Step 3: Add the condition. Since we’re looking for cars below our budget our condition is B6<B2

Add the condition

Step 4: Add a comma and write the equation for true.

Add a comma and write the equation for true.

Step 5: Add a comma and write the equation for false.

Add a comma and write the equation for false.

Step 6: Click Enter and drag the small circle at the bottom right of the cell to fill in the rest of the cells or use autofill.

Autofill

With the formula above, we can find the difference if the price of the car is below the budget and such equations.

Results of the is then formula

Since the equation for true and false is repeated in this case, The results will show negative if the car is over the budget.

Nesting with Other IF Statements

Although working with multiple IF THEN statements in Google Sheets may sound complex, you must simply type:

=IF(first test, value if true, IF(second test, value if true, value if false)

You can nest as many IF statements as you need. In addition to that, you can use a Google Sheet nested IF statement as the “value_if_true” argument in the same way. To do this, simply use the following syntax:

=IF(first_test, IF(second_test, value_if_true, value_if_false), value_if_false)

It is also worth noting that you can also use the Google IF function in conditional formatting. However, you cannot use the IF/THEN/ELSE syntax in a single rule in conditional formatting.

Frequently Asked Questions

How Do You Write an IF THEN Formula in Google Sheets?

Open your Google Sheets spreadsheet and then type the syntax of the IF THEN Google Sheets formula, which is =IF(logical_test, value_if_true, value_if_false) into a cell.

The logical test is what you want the statement to check against.

The first argument tells the function what to do if the comparison is true. The second argument tells the function what to do if the comparison is false.

Give this article a read in which I’ve explained everything you need to know on how to do IF THEN statements in Google Sheets, which also applies to IF ELSE Google Sheets statements.

How Do You Add Multiple Conditions in an IF Statement in Google Sheets?

While adding multiple statements in an IF function alone is not possible, You may use the IFS function in Google Sheets to test numerous conditions at once and then return the result. The IFS function differs from the IF function in that it allows you to test many conditions at once. When all the conditions are determined to be TRUE, the matching value is returned.

Can I Use an IF Formula in Conditional Formatting in Google Sheets?

You certainly can. Conditional formatting in Google Sheets allows you to modify the aspect of a cell—for example, the background color or text style—based on rules you define. Each rule that you create is an IF/THEN expression. For example, you may say, “If cell B2 is empty, change the background color of that cell to black.”

However, the IF/THEN/ELSE syntax cannot be used in a single rule in conditional formatting. Only the IF/THEN logical test is used for conditional formatting. For conditional formatting to be implemented, it must return TRUE.

What’s the Difference Between IF and IFS?

Google Spreadsheets IFS examines numerous conditions, whereas IF examines only one. I use the IFS function in Google Sheets when I want to add multiple conditional statements to my formula. The IF function makes it simple for a single condition.

Looking for a deeper dive into your data? I also have a video on using INDEX Match.

Conclusion

Above, I showed you how to use the IF THEN function in Google Sheets. I included a syntactical breakdown of the formulas, which showed exactly what data to include to output a relevant result.

Now, you should know how to write a proper IF statement. If this guide didn’t answer all the questions you had about the Google Sheets IF THEN formula, we’d recommend checking out the related content below.

Related:

Most Popular Posts

Related Posts

Thanks for visiting! We’re happy to answer your spreadsheet questions. We specialize in formulas for Google Sheets, our own spreadsheet templates, and time-saving Excel tips.

Note that we’re supported by our audience. When you purchase through links on our site, we may earn commission at no extra cost to you.

Like what we do? Share this article!