Power BI - 仅某些行的平均值

Power BI - Average of only some rows

我在 Power BI 中有这样一个 table:

         Minutes  Distance
Player 1    90       800         
Player 2    40       300         
Player 3    75       600    
Player 4    55       500    

 

我想只计算出场时间超过70分钟的球员的平均距离(本例中不包括计算平均值的球员2和球员4)。最好的方法是什么?一个新的衡量标准究竟是什么公式?提前致谢!

例如,您可以使用 CALCULATE function and pass a filter to it, to include only the rows, where Minutes is greater than 70. Then you can calculate the average distance using AVERAGE 函数,因此度量可以是这样的(假设您的 table 被命名为 Table):

Average Distance = CALCULATE(AVERAGE('Table'[Distance]), 'Table'[Minutes] > 70)