我是PowerPivot 2010的新手。我已经创建了一些报告,但是我想要创建一个需要新措施的报告有困难。在我的卷表中,我的卷表中有两列(tblPilot_Volume
) - Current Wk Vol This
和Current Wk Vol Last
。我想在数据透视中显示这两个值之间的百分比差异。
我尝试了下面的计算,但它不起作用。我不确定我做错了什么。
=sum(tblPilot_Volume[Current Wk Vol This]-(tblPilot_Volume[Current Wk Vol Last])/(tblPilot_Volume[Current Wk Vol Last])
在此之前,我尝试使用公式向PowerPivot表中添加一列。计算在表中工作,但是当我创建数据透视表时,它不起作用。
我还需要消除Current wk Vol Last
列中存在零的任何行。
答案 0 :(得分:0)
=(sum(tblPilot_Volume[Current Wk Vol This])-sum(tblPilot_Volume[Current Wk Vol Last])) / sum(tblPilot_Volume[Current Wk Vol Last])
创建度量时,请确保始终使用其中一个聚合函数(如sum,avg,min,max等)。
希望这有帮助。