DAX Logical - TRUE function


Description

Returns the logical value TRUE.

Syntax

TRUE () 

Parameters

No parameters for this function.

Return Value

TRUE always.

Remarks

The word TRUE is also interpreted as the logical value TRUE.

Example

= IF(AND([Country] = "USA",[Medal] = "Gold") = TRUE(),1,0)) 

Returns a calculated column with 1s for the rows with values USA in the column Country and Gold in the column Medal. Returns 0s for the rest.

dax_functions_logical.htm
Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements