说我有Query1,它看起来像这样:
date, origin, type, cnt
5/1/2019, A, A, 6
4/29/2019, B, A, 6
4/29/2019, C, B, 3
我在报表上有三个过滤器,用户可以在其中定义日期范围,要查询的来源和类型。
现在,我需要创建第二个表(DailyFiltered),当不应用任何过滤器时,它看起来像这样:
date, filteredCnt
5/1/2019, 6
4/29/2019, 9
在考虑用户在报告过滤器中定义的内容时。例如,如果用户仅选择类型A,则“每日过滤”将看起来像这样:
date, filteredCnt
5/1/2019, 6
4/29/2019, 6
当前,我有:
Daily Filtered = summarize(keepfilters(Query1), Query1[date],
"filteredCnt", sum(Query1[cnt]))
我在日期上有Query1和Daily Filtered加入,多对一,交叉过滤方向=两者。
第二个表仅由Query1的日期过滤器过滤。不知道我出了什么问题,但是当报表的前端用户切换原点或键入过滤器时,“每日过滤”应该会更改。