The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I have a years dimension table and I want to calculate a KPI wich is the difference between the value of an another KPI value in a year minus its value the year before:
KPI2 = KPI1(YearN) - KPI(YearN-1)
Any help how to do it?
Thank you
Solved! Go to Solution.
Hello @Wattar ,
You may use Time Intelligence DAX for this: PARALLELPERIOD or DATEADD
KPI 2 =
VAR KPI1 = [measure]
VAR KPI1PrevYear =
CALCULATE([measure], PARALLELPERIOD([date],-1,"Year"))
VAR Diff = KPI1 - KPI1PrevYear
RETURN
Diff
Cheers!
Vivek
If it helps, please mark it as a solution
Kudos would be a cherry on the top 🙂
https://www.vivran.in/
Connect on LinkedIn
Hello @Wattar ,
You may use Time Intelligence DAX for this: PARALLELPERIOD or DATEADD
KPI 2 =
VAR KPI1 = [measure]
VAR KPI1PrevYear =
CALCULATE([measure], PARALLELPERIOD([date],-1,"Year"))
VAR Diff = KPI1 - KPI1PrevYear
RETURN
Diff
Cheers!
Vivek
If it helps, please mark it as a solution
Kudos would be a cherry on the top 🙂
https://www.vivran.in/
Connect on LinkedIn
User | Count |
---|---|
15 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
13 | |
13 | |
8 | |
8 |