Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.05 KB

not-mdx.md

File metadata and controls

43 lines (31 loc) · 1.05 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic ms.custom
NOT (MDX)
NOT (MDX)
kfollis
kfollis
kfollis
02/17/2022
sql
analysis-services
reference
mdx

NOT (MDX)

Performs a logical negation on a numeric expression.

Syntax

  
NOT Expression1  

Parameters

Expression1
A valid Multidimensional Expressions (MDX) expression that returns a numeric value.

Return Value

A Boolean value that returns false if the argument evaluates to true; otherwise, true.

Remarks

The NOT operator treats the expression as a Boolean value (zero, 0, as false; otherwise, true) before the operator performs the logical negation. The following table illustrates how the NOT operator performs the logical negation.

Expression1 Return Value
true false
false true

See Also

MDX Operator Reference (MDX)