The TRUE function has a special type of compatibility in returning results based on logical conditions. In this article, I’ll discuss how to use the TRUE function in Excel including real-life examples with proper explanations. So that you may adjust the formula for your uses.
TRUE Function in Excel (Quick View)
Download Excel Workbook
Excel TRUE Function: Syntax & Arguments
Firstly, we’ll see the syntax and argument of the function. If you insert the function after entering an equal sign (=), you’ll see the following figure.
Summary
The TRUE function is a compatibility function (also called logical function or conditional function) that returns the logical value TRUE. It is mainly equivalent to the Boolean value TRUE which works based on a condition.
Syntax
=TRUE ()
Return Values
- TRUE (a logical value)
Arguments
No arguments.
10 Suitable Examples to Use TRUE Function in Excel
Now we’ll learn 10 easy and suitable examples to learn how to use the TRUE function in Excel.
Example 1: Apply TRUE Function as Value
The TRUE function acts as a logical value in Excel. So that you can use the function in calculations. The numerical value of TRUE is 1 during calculations. See the following screenshot.
Example 2: Use TRUE as Boolean Function
A boolean variable can have one of two possible values. One possible value for a binary variable is 0 (false), while the other is 1.
The TRUE function returns the value 1 while acting as a boolean function in Excel.
There are various types of expressions in the following figure. As the input is inserted with the logical operator, the result shows TRUE if the logic is actual. Otherwise, FALSE is shown.
Let’s think about a little bit of complex example like the following.
For example, the product names with their price are given. Also, a criterion is provided that you have to find the discount for all products based on a discount of 15% for the price greater than $250.
If the logical statement says the price is greater than $250, the result will be TRUE, and also the TRUE will be replaced by the given percentage of 15%. To do it we’ll use the IF function.
For this, use the following formula.
=IF(C5>$G$7,$H$7,$H$6)
Example 3: Finding Greater or Less Than Value from a Given Value
You can easily find the greater than or less than value from a specific value.
Suppose, the standard price is given as $200. Now you have to check whether the value is greater than $200 or not.
=IF(C5>200,TRUE)
Example 4: Finding Equal Cell Value
Let’s imagine you have two prices e.g. prices in July and prices in August.
You have to check if the two prices are equal or not.
Just use the following formula.
=IF(C5=D5,TRUE)
Here, C5 is the price in July, and D5 is the price in August.
Example 5: Combine NOT Function with TRUE Function
Like the TRUE function, NOT is also a logical function. This function helps to verify that one value is not the same as another.
If you give TRUE, FALSE is returned and FALSE is given, TRUE will be returned.
In essence, it always returns a logically opposite value.
So you can check whether the price is not greater than $200 using the following formula.
=IF(NOT(C5>=200),TRUE)
Read More: How to Use NOT Function in Excel (With 8 Examples)
Similar Readings
- How to Use FALSE Function in Excel (7 Easy Examples)
- Use Excel XOR Function (5 Suitable Examples)
- How to Use IFERROR Function in Excel (4 Practical Examples)
Example 6: Merge AND Function with TRUE Function
The AND function returns either TRUE or FALSE based on more than one condition.
Assuming that, you want to match the product and price with separate conditions e.g. product will be a TV and the price is greater than or equal to $500.
In such a situation the formula will be-
=IF(AND(B5="TV",C5>=500),TRUE)
Read More: How to Use AND Function in Excel (5 Suitable Examples)
Example 7: Combine COUNTIF with TRUE Function
The COUNTIF is a function to count the number of cells with criteria. You can use the function to count the number of TRUE in a cell range.
The formula will be for the following figure is:
=COUNTIF(D5:D14,TRUE)
Example 8: Finding Numerical Values
The ISNUMBER function checks the cell value whether it is a number or not. If the input is a number, the result will be shown as TRUE otherwise, FALSE.
The formula is:
=ISNUMBER(B5)
Example 9: Merge VLOOKUP Function with TRUE Function (Approximate Match)
The VLOOKUP is a popular Excel function to find the required value from a cell range based on the lookup value and types of the match i.e. TRUE is for an approximate (closest) match and FALSE is for an exact match.
For example, the products are given with price and discount rate. You have to find the discount rate if the price is $350. But such a price is not in the given table.
So, you have to find the closest discount rate for the price of $350.
For this, use the following formula.
=VLOOKUP(F5,C5:D14,2,TRUE)
Here, the lookup price is $350, the cell range is C5:D14, 2 is the column index(as the price in the 2nd column), and TRUE is for an approximate match.
Note: While finding the approximate match, you must organize the value (cell range) from where you want to find the lookup value in ascending order. Otherwise, you’ll find inaccurate results.
Example 10: Conditional Formatting Using TRUE Function
If you guys need to highlight the odd discount rate for better visualizations, you may use the Conditional Formatting toolbar from the Styles command bar. Let’s see how to do it.
Steps:
- First, select the data and open a New Formatting Rule dialog box by clicking Home tab > Conditional Formatting > New Rules.
- Then choose the option Use a formula to determine which cells to format, and insert the following formula for the odd number. Lastly, open the Format option to specify the highlighting color.
=ISODD(C5)
- Next, select your desired color from the Fill section. We chose the yellow color.
Then you’ll get the following output.
How to Fix When TRUE Function Is Not Working in Excel
In some cases, you may face problems while using the TRUE function. Here we’ll introduce you to the most common reason. Have a look at the below dataset, we applied the IF function to return ‘Discount’ for TRUE and ‘No Discount’ for FALSE. But unfortunately, it’s only returning ‘No Discount’ for every price.
The reason is we used double quotes with TRUE and that is the mistake. We know we use double quotes for texts in the formula but here TRUE is not a text, it’s a function. And the TRUE function works like the numerical value 1. As numerical value doesn’t need double quotes, so it created that error.
Solution:
- Just remove the double quotes from the TRUE function and then the formula will work properly.
Things to Keep in Mind
- The output for TRUE() and TRUE are similar. So, don’t be confused.
- Excel automatically returns either TRUE or FALSE for any type of logical expression.
- While computing, TRUE turns to 1 and FALSE turns to 0.
Conclusion
This is how you can apply the TRUE function to return the logical value TRUE. Also, you have the opportunity to combine the function with other Excel functions. If you have an interesting and unique method of using the TRUE function, please share it in the comments section below.
Thanks for being with me.