Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.04 KB

not-equal-to-mdx.md

File metadata and controls

41 lines (28 loc) · 1.04 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic ms.custom
<> (Not Equal To) (MDX)
<> (Not Equal To) (MDX)
kfollis
kfollis
kfollis
02/17/2022
sql
analysis-services
reference
mdx

<> (Not Equal To) (MDX)

Performs a comparison operation that determines whether the value of one Multidimensional Expressions (MDX) expression is not equal to the value of another MDX expression.

Syntax

  
MDX_Expression <> MDX_Expression  

Parameters

MDX_Expression
A valid MDX expression.

Return Value

A Boolean value based on the following conditions:

  • true if both parameters are non-null, and the first parameter is not equal to the second parameter.

  • false if both parameters are non-null, and the first parameter is equal to the second parameter.

  • null if either or both parameters evaluate to a null value.

See Also

MDX Operator Reference (MDX)