FALSE DAX Function

The FALSE function returns the logical value FALSE.

DAX Syntax FALSE()

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())
FALSE dax function