
- 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 Logical - FALSE function
Description
Returns the logical value FALSE.
Syntax
FALSE ()
Parameters
No parameters for this function.
Return Value
FALSE always.
Remarks
Word FALSE is also considered as the logical value FALSE.
Example
= SUMX (Results, IF ([Country] = "USA", FALSE (),1))
Returns the number of Medals won by the Country other than USA.
dax_functions_logical.htm
Advertisements