DAX Logical - NOT function



Description

Converts FALSE to TRUE and TRUE to FALSE.

Syntax

NOT (<logical>) 

Parameters

Sr.No. Parameter & Description
1

logical

A value or expression that can be evaluated to TRUE or FALSE.

Return Value

Either TRUE or FALSE.

Example

= NOT (AND ([Medal Count]<500, [Count of Sport]>100)) returns True. 
= NOT (AND (Results[Medal Count]>150,Results[Count of Sport]>150)) returns False. 
dax_functions_logical.htm
Advertisements