This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowThe Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more
I want to calculate the difference in % between two dated values, like in this example:
January 2016: 10
January 2017: 11
%diff: +10%
This is what i've managed to do until now:
Solved! Go to Solution.
Hi,
If I understand you correctly, you can use SAMEPERIODLASTYEAR().
Amount (same time last year)
= CALCULATE(
SUM(FactInternetSales[SalesAmount]),
SAMEPERIODLASTYEAR(OrderDate[FullDateAlternateKey]),
ALL(OrderDate)
)
For example, this should give you:
Order Date (Year) Sale Amount Calc Sale Amount Same Last Year
2016 10
2017 11 10
From there, you should be able to calculate %diff.
There's a good article about Time Intelligence function, including SAMEPERIODLASTYEAR() - http://radacad.com/secret-of-
time-intelligence-functions-in-power-bi
Hope this helps.
Hi @nzboan,
Have you tried the solution provided by @Anonymous above? Does it work in your scenario? If it works, could you accept it as solution to close this thread?
If you still have any question on this issue, feel free to post here. ![]()
Regards
Hi,
If I understand you correctly, you can use SAMEPERIODLASTYEAR().
Amount (same time last year)
= CALCULATE(
SUM(FactInternetSales[SalesAmount]),
SAMEPERIODLASTYEAR(OrderDate[FullDateAlternateKey]),
ALL(OrderDate)
)
For example, this should give you:
Order Date (Year) Sale Amount Calc Sale Amount Same Last Year
2016 10
2017 11 10
From there, you should be able to calculate %diff.
There's a good article about Time Intelligence function, including SAMEPERIODLASTYEAR() - http://radacad.com/secret-of-
time-intelligence-functions-in-power-bi
Hope this helps.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 27 | |
| 22 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 25 | |
| 20 | |
| 20 | |
| 20 | |
| 20 |