获取Power BI度量的中位数。

huangapple go评论63阅读模式
英文:

Get the median of a Power BI measure

问题

如何在Power BI DAX中计算度量的中位数?

我有一个度量值[Total Utilization (%)],我想要获取它的中位数。但看起来我只能对列使用Median。

示例数据集:

获取Power BI度量的中位数。

英文:

How can I calculate the median of a measure in Power BI DAX?

I have a measure [Total Utilization (%)], and I want to get its median. But it looks like I can only use Median for columns

Sample Dataset:

获取Power BI度量的中位数。

答案1

得分: 0

尝试这个 测量

=
VAR T1 =
    SUMMARIZE (
        表格,
        表格[员工],
        "总利用率", [总利用率(%)]
    )
RETURN
    MEDIANX (
        T1,
        [总利用率]
    )
英文:

Try this measure:

=
VAR T1 =
    SUMMARIZE (
        Table,
        Table[Employee],
        "Total Utilization", [Total Utilization (%)]
    )
RETURN
    MEDIANX (
        T1,
        [Total Utilization]
    )

huangapple
  • 本文由 发表于 2023年4月17日 13:08:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/76031876.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定