gpt4 book ai didi

powerbi - 总结在卡片视觉上创建的度量

转载 作者:行者123 更新时间:2023-12-04 13:29:02 25 4
gpt4 key购买 nike

这是我的数据

App_Num Processed_Date State
A1 10 Feb 2021 Open
A1 10 Feb 2021 Closed
A1 22 Feb 2021 Closed
A2 22 Feb 2021 Closed
A2 20 Feb 2021 Closed
A2 21 Feb 2021 Open
A3 20 Feb 2021 Open
A4 20 Feb 2021 Open
A7 20 Feb 2021 Open
我有一个这样制作的 PBI 表,
App_Num  Last_Processed_Date     Days Diff    MyMeasure   HasOpenTransactions             
A1 22 Feb 2021 2 1 1
A2 21 Feb 2021 3 1 1
A3 20 Feb 2021 4 0 0
A4 20 Feb 2021 4 0 0
A7 20 Feb 2021 4 0 0
在 table 上
Last_Processed_Date 是在 PBI 中创建的度量 - 使用类似的东西。
Last_Processed_Date = calculate (max(processed_date),filter(table1, app_num = selectedvalue(app_num)
Days Diff 是用这样的东西写成的度量。
Days Diff = var selected_app_num = selectedvalue(app_num)
var last_processed_date = calculate (max(processed_date),filter(table1, app_num = selected_app_num))
var days_diff_req = datediff(last_processed_date, today(),day)
return days_diff_req
有一个参数切片器,传递的参数将选择所需的天数差异,范围从 1 到 100。
在这种情况下,用户选择了 3。
MyMeasure = var selected_app_num = selectedvalue(app_num)
var last_processed_date = calculate (max(processed_date),filter(table1, app_num = selected_app_num))
var days_diff_req = datediff(last_processed_date, today(),day)
var required = if(days_diff_req <= selectedvalue(Parameter),1,0)
return required

Today () in the above formula refers to 24/02/2021
因此,到目前为止,它可以像上面一样工作并生成表格,并且当用户调整 Input 参数时它是动态的 - MyMeasure 的值按预期相应地变化。
但是现在,我想制作一张卡片视觉效果,上面写着“2”。这只不过是 MyMeasure 的总和或 App_Numbers 的计数与预期日期差异。我尝试使用创建的 MyMeasure 作为卡片上的视觉级别过滤器来执行此操作,但它不起作用。我们如何解决这个问题?

最佳答案

下面的度量将对 mymeasure 值求和。

cards_measure = var _APP_NUM = ALLSELECTED(app_table[App_Num]) RETURNSUMX(VALUES(app_table[App_Num]),if(app_table[App_Num]in(_APP_NUM),[MyMeasure],0))


enter image description here

关于powerbi - 总结在卡片视觉上创建的度量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66338641/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com