0

I am trying to create a Power View report tiled by KPIs, is this possible?

An example of my raw data:

Company ID    Employee ID    Measure    numerator    denominator
1             01             1          2            5
2             04             1          3            6
3             02             1          0            5
4             03             1          1            2
1             01             2          4            4
2             04             2          2            3
2             06             2          0            6
4             01             2          1            4

I have created a calculated column in Power Pivot using the following DAX function:

RATE:=[numerator]/[denominator]

From this, I want to create KPIs for each measure (each measure has different targets), and use these KPIs as tiles in a Power View report filtered by Company ID and/or Employee ID.

Can this be done?

4

1 回答 1

0

您不能按 KPI 平铺。您的 KPI 必须是一个度量,并且您不能按度量平铺。您可以按计算列或数据集中的任何原始字段进行平铺。因此,您可以将 RATE 放入 TILE BY 框中。

要将度量列或 KPI 类型图标用作平铺字段,最好的方法可能是为度量列使用图像。在此处查看有关在 Power View 中包含图像的更多信息:https: //support.office.com/en-ca/article/Images-in-Power-View-84e91b90-b1da-4913-83d6-beada5591fce?ui=en-US&rs= en-CA&ad=CA

于 2015-05-22T16:11:36.343 回答