如何使用power bi计算平均值

How to calculate average using power bi

在power bi我有2个table

Table 1(座位总数) 会场1 100个座位 会场2 150个座位

Table 2(使用的座位数) 会场1 40个座位 会场2 75个座位

我需要计算使用了多少个座位

ex (40/100) *100 = 40%

谁能帮帮我

**当前数据库我不能加入这些table

尝试使用平均函数无效

假设您的表格如下所示:

Table 1:

Venue    | Total Seats
-----------------------
Venue 1  |         100
Venue 2  |         150

Table 2:

Venue    | Seats Used
----------------------
Venue 1  |         40
Venue 2  |         75

在字段 Venue 上创建 Table 1Table 2 之间的关系,然后您可以创建一个度量:

Seat Utilisation = 
DIVIDE ( 
    SUM ( 'Table 2'[Seats Used] ),
    SUM ( 'Table 1'[Total Seats] ),
    BLANK()
)

有关示例 PBIX 文件,请参阅 https://pwrbi.com/so_55470616/