Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi the community,
I'm making progress with PBI, specially in YOY analysis, but i'm still stuck with beginner issues...
So here is my problem :
I was looking to calculate variation quantity YOY, like in this example :
Year Month | Order Quantity | Quantity LY | Quantity Diff between CY LY |
Apr 19 | 442 | 1026 | -584 |
May 2019 | 823 | 730 | 93 |
I created a calandar table to help me in YOY comparaison, like it seems to be recommended.
I did those two calculation for the while :
- Quantity LY = CALCULATE(SUM("Sheet 1" ^[Order Quantity]), SAMEPERIODLASTYEAR ("Calendar Table" [Date])
- Quantity Diff Between CY LY = SUM("sheet 1" [Order Quantity] - [Quantity LY]
Now i'm trying go get this Difference in Variation % :
I tried this :
% Variation CY LY =
VAR _currentyear = SUM('Scrap Projection'[Order Quantity])
VAR _LastYear = [Quantity LY]
RETURN
_currentyear - _LastYear / _currentyear
But my result had no sense...
I'm sure i'm missing something simple... Anyone can advise me ?
Thanks in advance 🙂
Solved! Go to Solution.
Pretty sure you want:
% Variation CY LY =
VAR _currentyear = SUM('Scrap Projection'[Order Quantity])
VAR _LastYear = [Quantity LY]
RETURN
(_currentyear - _LastYear) / _currentyear
Pretty sure you want:
% Variation CY LY =
VAR _currentyear = SUM('Scrap Projection'[Order Quantity])
VAR _LastYear = [Quantity LY]
RETURN
(_currentyear - _LastYear) / _currentyear
thank you so much Greg for your help 🙂
Wish you the best !
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
9 |