Power BI 矩阵表 - 列标题

问题描述 投票:0回答:1

我有以下矩阵表:

视觉行:

  • 日期 -> 月份

视觉专栏

视觉价值

  • 值 1(是一个度量)
  • 值 2(是一个度量)
  • 值 3(是一个度量)
  • 值 4(是一个度量)

目前我得到以下表格:

Month       | Value 1  | Value 2 | Value 3  | Value 4 |
------------------------------------------------------
January     |    47    |    63   |    47    |    63   |
February    |    50    |    42   |    24    |    33   |
March       |    38    |    37   |    75    |    42   |
April       |    12    |    65   |    32    |    39   |
May         |    45    |    30   |    28    |    42   |
June        |    67    |    41   |    36    |    50   |

我想添加一列,以便我可以将值分为 2 个类别:

  1. 1类
    • 值1
    • 值2
  2. 2类
    • 值3
    • 价值4

所以我会得到如下矩阵:

            |     Category 1     |      Category 2    |
Month       | Value 1  | Value 2 | Value 3  | Value 4 |
------------------------------------------------------
January     |    47    |    63   |    47    |    63   |
February    |    50    |    42   |    24    |    33   |
March       |    38    |    37   |    75    |    42   |
April       |    12    |    65   |    32    |    39   |
May         |    45    |    30   |    28    |    42   |
June        |    67    |    41   |    36    |    50   |

通过 dax 测量这是否可能?

感谢您的帮助

powerbi dax powerbi-desktop data-modeling measure
1个回答
0
投票

创建一个名为“我的表”的断开连接表(不要与其创建任何关系)

创建这样的度量:

Measure = 
VAR x= SELECTEDVALUE('My Table'[Measure])
RETURN
SWITCH(TRUE(),
    x = "Measure 1", "I'm measure 1",
    x = "Measure 2", "I'm measure 2",
    x = "Measure 3", "I'm measure 3",
    x = "Measure 4", "I'm measure 4",
    BLANK()
)

将所有内容添加到矩阵中,并确保深入了解列

© www.soinside.com 2019 - 2024. All rights reserved.