Description: This function provides the absolute value of the given value.
Syntax:
ABS(Numeric_Expression)
Return Type:
SCALAR
Parameters:
Numeric_Expression
Numeric expression to apply the mathematical ABSs operation to.
Example
Code Block |
---|
WITH MEMBER [Measures].[Result] AS ABS([Measures].[Sales]) SELECT [Measures].[Result] ON 0 FROM [AdventureWorksMF] |