DAX Function Guide

TRUE
Empty image or helper icon

Sam McKay

CEO & Founder

How does the TRUE work?
The TRUE function (DAX) returns the logical value TRUE.
TRUE Formula Syntax

TRUE(
     
)

How do you use the TRUE?

It is a very useful function when you want to return the output as TRUE based on a condition. A TRUE function is the same like Boolean value TRUE. It’s also called a conditional function.

A TRUE function can be used with other logical functions like IF, ERROR etc.

Related Blog Posts

Loading

Considerations when using the TRUE?

If you want to enter TRUE, or provide TRUE as a result in a formula, you can just use enter the word TRUE directly into a cell or formula and Excel will interpret this as the logical value TRUE.

Also note that logical expressions themselves will automatically generate TRUE and FALSE results.

Related Video Tutorials

Loading

Formula examples using the TRUE

= IF(SUM(‘InternetSales_USD'[SalesAmount_USD]) >200000, TRUE(), false())

=IF(A1<0, TRUE())

=IF(A12>30,TRUE())

Related Courses

Loading