返回

powerbi-使用或在power bi dax中切换为TRUE

发布时间:2022-07-04 09:46:08 253
# less

我在power bi表中有15列。我想创建一个新的度量值,如果任何列的百分比值小于60%,它将返回列名。

示例表:

| ID   | total| col2 | col3 | col4 | col5 |
| ---- | ---- | ---- | ---- | ---- | ---- |
| a100 | 50   | 35   | 10   | 5    | 6    |
| a101 | 36   | 25   | 5    | 12   | 18   |

我为显示百分比的每列创建了一个新的度量值

%col2 = SUM(col2)/SUM(total)*100
%col3 = SUM(col3)/SUM(total)*100
%col4 = SUM(col4)/SUM(total)*100
%col5 = SUM(col5)/SUM(total)*100

通过上述新措施,我将得到col2>;60%

What I would like is to create a visual, maybe by kpi or a table that will return only the columns that have less than 60%.

我尝试了以下方法:

col_to_improv = SWITCH(TRUE(), OR(table[col2] < 60, "columnname", table[col3] < 60, "col_name2", table[col4] < 60, "col_name3"), table[col5] < 60, "col_name4],"")

我只想显示小于60%的列名,否则不显示。

从上面的示例表中,在kpi(或其他可视化)中,我预计只有col3、col4和col5,因为它们的百分比不到60%。

特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(2)
按点赞数排序
用户头像