TRUE Function

The Excel TRUE function returns the Boolean value TRUE. The function provides compatibility with other spreadsheet programs.

In most cases, using the TRUE function is unnecessary if you are working in Excel. The function’s only purpose is to generate the logical value TRUE.

Syntax, Arguments

The syntax is simple, and the TRUE() function does not use an argument.

=TRUE()

Examples

Take a closer look at the formulas below! Both formulas use the IF function, and the results are the same.

true example
  • =IF(B3>=30, TRUE())
  • =IF(B3>=30, TRUE)

The result is FALSE because the value is less than 30.

Don’t forget that logical expression will automatically generate only two types of output: the formula will return TRUE or FALSE results based on Boolean logic.

Workaround with SWITCH and TRUE functions

In the following example, we’ll introduce a trick! With its help, you can use logical operators with the SWITCH function.

Our goal is simple: reduce the actual price by 10% if the price is greater than or equal to 150 and less than equal to 300. If both logical tests are TRUE, the formula will return the following text string: “10%”. We will use the “-” string to handle errors in other cases.

=SWITCH(TRUE, AND(C4>=150,C4<=300),”10%”,”-”)

Switch and true functions workaround example

Additional resources

Istvan Vozar

Istvan is the co-founder of Visual Analytics. He helps people reach the top in Excel.