TRUE DAX Function
The TRUE function returns the logical value TRUE.
DAX Syntax TRUE()
Example: The formula returns the logical value True or False by comparing the Marks column value with number 33.
DAX
True and False Column = IF([Marks]>33, TRUE(), FALSE())