我有一个包含 2022 年和 2023 年发货单位列的数据透视表。
希望使用 MDX 计算度量来计算这些指数 (2023/2022)*100
我有一个带有年份的日历表,年份为 2022 年和 2023 年。
已发货的单位在措施中是白色的。
谢谢。
[措施].[发货数量]、[日历].[年份].&[2023]/[措施].[发货数量]、[日历].[年份].&[2022]*100
错误信息
您至少需要使用大括号来确保分子和分母为
tuples
:
([Measures].[Shipped Units],[Calendar].[Year].&[2023])/([Measures].[Shipped Units],[Calendar].[Year].&[2022])*100
此外,我宁愿使用
MDX
的功能DIVIDE
:
DIVIDE(
([Measures].[Shipped Units],[Calendar].[Year].&[2023])
,([Measures].[Shipped Units],[Calendar].[Year].&[2022])
)*100