Skip to main content
InterSystems Supply Chain Orchestrator 2024.1
AskMe (beta)
Loading icon

POWER (MDX)

Returns the given numeric value raised to the power of the second argument.

Returned Type

This function returns a number.

Syntax and Details

POWER(numeric_expression,power)

Where:

Example

The first example shows the %COUNT measure raised to the third power:

SELECT POWER(MEASURES.[%COUNT],3) ON 0 FROM patients
 
                                     POWER
                          1,000,000,000,000

The next example uses the %LABEL function to apply a more detailed caption:

SELECT %LABEL(POWER(MEASURES.[%COUNT],3),"PAT CNT^3") ON 0 FROM patients
 
                                 PAT CNT^3
                          1,000,000,000,000

The following example shows a fractional power:

SELECT POWER(MEASURES.[%COUNT],0.5) ON 0 FROM patients
 
                                     POWER
                                        100

See Also

FeedbackOpens in a new tab