英文:
Average of 3 years of sales
问题
我在Power BI方面还相对新手,但我有一个类似于以下表格的数据:
| 年份 | 销售额 |
| -------- | -------- |
| 2019 | 335 |
| 2019 | 730 |
| 2020 | 430 |
| 2020 | 358 |
表格中还有更多信息,但您可以看到,每年有多个不同的销售条目,数据从2018年到2023年。我想要找出2020年至2022年所有销售额的平均值。我期望得到一个数值(将2020年至2022年的销售额相加,然后除以3),以用于Y轴上的线图。
我开始编写一个新的度量,但在以下部分卡住了。我希望得到一些帮助,以更新这个度量,以获得正确的数值。
3年平均 = SUMX(FILTER(
'表格',
'表格'[年份] > "2019"); '表格'[销售额])
英文:
I'm still quite new at Power BI but i have a table that is similar to this:
Year | Sales |
---|---|
2019 | 335 |
2019 | 730 |
2020 | 430 |
2020 | 358 |
There is more information in the table but as you can see i have multiple different sales entries for each year and the data dates from 2018-2023. I would like to find the average of all the sales from 2020-2022. I am expecting 1 figure (adding all the sales from 2020-2022 then diving it by 3) to use in the line y axis.
I started writing a new measure but i got stuck after this. I am hoping to get some help updating this to give me the correct figure.
3_year_avg = SUMX(FILTER(
'table',
'table'[year] > "2019"); 'table'[sales])
答案1
得分: 0
3年平均 =
SUMX(
FILTER(
all('表'),
'表'[年份] > "2019"
),
'表'[销售额]
)
英文:
Can you try this below-
3_year_avg =
SUMX(
FILTER(
all('table'),
'table'[year] > "2019"
),
'table'[sales]
)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论