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 nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
hi all
I need to calculate a year over year percent change of tickets created based on the year I select with a slicer.
E.g. if I choose 2018 from the slicer, it should compare the 2018 vs 2017 tickets, if I select 2019, compare 2019 vs 2018 ticketsand so on. But if I select blank, it should return blank.
I created a DAX that uses 2019 as a date reference, and a comparisson of this year vs previous year however this is static and compares only 2 years, and I want it to be dynamic depending on the slicer selection.
I attach the PBI
https://www.mediafire.com/file/wvnpxdyvfcecr70
And the excel
http://www.mediafire.com/file/nrxn7wx75lhzi0i/report1576508921493.xls/file
Is is possible to have a dax with the conditions desctibed above?
Thank you!
Solved! Go to Solution.
Hi @o59393 ,
You may download my PBIX file from here.
Hope this helps.
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @o59393 ,
You may download my PBIX file from here.
Hope this helps.
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
WOW!
Looks very solid. Just one thing, how can I get the result as 45.87% instead of 145.87%?
I tried swtiching the numerator and denominator but didnt work.
Hi @o59393
try this.
Change % =
IF (
HASONEVALUE ( report1576508921493[Year] );
DIVIDE (
[Number of Tickets];
CALCULATE (
[Number of Tickets];
FILTER (
ALL ( report1576508921493[Year] );
report1576508921493[Year]
= MAX ( report1576508921493[Year] ) - 1
)
)
)-1;
BLANK()
)
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
You rock, thanks a million for your help!!
Have a great day!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 49 | |
| 47 | |
| 41 | |
| 21 | |
| 19 |