I am trying to build a Measure using MDX that is equivalent to the following Power BI DAX calculation:
CALCULATE(
[Total Orders],
'Calendar Dimension'[LAST_WEEK_FLAG]=“1"
)
I am trying to build a Measure using MDX that is equivalent to the following Power BI DAX calculation:
CALCULATE(
[Total Orders],
'Calendar Dimension'[LAST_WEEK_FLAG]=“1"
)
Copyright © 2021 Jogjafile Inc.
In
MDXit would likely be a new measure, that is a tuple of the specified measure and member - so something like the following. The braces are theMDXsyntax for a tuple: