Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi, I am trying to achieve below and I am immensely thankful for your suggesstions and expertise.
Year | Returns | Sales | Returns as % of Past 3 yrs Sales | Comment |
2018 | 13 | 14892 | No need to show this as there is no data for prior years | |
2019 | 5 | 16034 | No need to show this as there is no data for prior years | |
2020 | 8 | 9387 | 0.06% | Formula : SUM(8+5+13)/SUM(9387+16034+14892) |
2021 | 10 | 22189 | 0.05% | Formula : SUM(10+8+5)/SUM(22189+9387+16034) |
2022 | 3 | 3096 | 0.06% | Formula : SUM(3+10+8)/SUM(3096+22189+9387) |
I want this to be dynamic so that the calculation automatically happens for future years.
Thanks,
BINama
Solved! Go to Solution.
Thank you for providing the sample data. That helps a lot with proposing a potential solution. Here is a measure based version
3yr Ret % =
var y = SELECTEDVALUE('Table'[Year])
var t = CALCULATETABLE(TOPN(3,'Table','Table'[Year],DESC),ALLSELECTED(),'Table'[Year]<=y)
return if(COUNTROWS(t)=3,divide(sumx(t,[Returns]),sumx(t,[Sales])))
Depending on your situation it could also be done as a calculated column.
See pbix attached.
Thank you for providing the sample data. That helps a lot with proposing a potential solution. Here is a measure based version
3yr Ret % =
var y = SELECTEDVALUE('Table'[Year])
var t = CALCULATETABLE(TOPN(3,'Table','Table'[Year],DESC),ALLSELECTED(),'Table'[Year]<=y)
return if(COUNTROWS(t)=3,divide(sumx(t,[Returns]),sumx(t,[Sales])))
Depending on your situation it could also be done as a calculated column.
See pbix attached.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
87 | |
87 | |
85 | |
67 | |
49 |
User | Count |
---|---|
135 | |
112 | |
100 | |
66 | |
62 |