
- DAX Functions Tutorial
- DAX Functions - Home
- DAX Functions - Introduction
- DAX Parameter Naming Conventions
- Description Structure
- DAX Functions - Aggregation
- DAX Functions - Filter
- DAX Functions - Time Intelligence
- DAX Functions - Date and Time
- DAX Functions - Information
- DAX Functions - Logical
- Math & Trigonometric Functions
- DAX Functions - Parent & Child
- DAX Functions - Statistical
- DAX Functions - Text
- DAX Functions - Other
- DAX Functions Useful Resources
- DAX Functions - Quick Guide
- DAX Functions - Useful Resources
- DAX Functions - Discussion
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
Advertisements