HomeGoogle DocsSpreadsheetHow to Use Percentage Value in Logical IF in Google Sheets

How to Use Percentage Value in Logical IF in Google Sheets

Published on

I have written tons of advanced Google Sheets tutorials that covering almost all important functions in Google Sheets. This time I am with a basic tutorial for beginners. Here I’m going to explain to you how to use percentage value in logical IF in Google Sheets. For example, if a cell contains a value 80%, in another cell, I want an IF formula to return TRUE otherwise FALSE.

Hope you already know the use of Logical IF in Google Doc Spreadsheets. If not, here are some tutorials that take you from basic to advanced level use of IF function.

Basic to Advanced Tutorials on IF Logical Function in Google Doc Spreadsheet

1. How to Use IF Function in Google Sheets

2. Nested IF and IFS

3. How to use IF, OR, AND together in Google Sheets

The above three tutorials contain all the necessary information on the use of IF function such as tips, tricks, and screenshots to make you a pro in logical test. Now let us see how to use percentage value in Logical IF in Google Sheets.

Example of the Use of Percentage Value in Logical IF in Google Sheets

There are two steps that you can follow to include a percentage figure in the logical test. Here are that tips.

Example:

percentage value in IF logical test google doc

I have a price list of books, a long list, similar to the above, containing the book details and available discounted price in Column D. Wherever the discount offered is more than or equal to 50%, I wish to order that books.

You can use an IF logical function to mark such books with a text “Place the Order” in column E. Here you can use percentage value in logical IF in Google Sheets as below.

=if(D2>=50%,"Place the Order","")

You can apply this formula in Cell E2 and then copy and paste it to down. Otherwise, you can simply opt an ArrayFormula in Cell E2, that would automatically expand to down.

=ArrayFormula(if(D2:D>=50%,"Place the Order",""))

As I have told you there is one more method to include percentage figure in IF. You can use the formula as below to test percentage value in IF.

=ArrayFormula(if(D2:D>=0.5,"Place the Order",""))

Here instead 50%, I’ve used 0.5. If you want to test 25%, the value in the formula would be 0.25. That’s all. Enjoy.

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Running Total By Month in Excel

This tutorial demonstrates how to calculate the running total by month in a range...

SORT and SORTBY – Excel Vs Google Sheets

While Excel offers the SORT and SORTBY functions for sorting a table, Google Sheets...

Get Top N Values Using Excel’s FILTER Function

When using the FILTER function in Excel to extract the top N values, it's...

More like this

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

Google Sheets Bar and Column Chart with Target Coloring

To color each data point in the column or bar chart according to the...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.