Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi, I have a requirement here:
I have data like below:
I need the output in Power BI as:
There will be a slicer to select year. When I select Year as 18 in the slicer, it should list data only for Year 2018 where the Profit for year 2018 is compared with Profit of 2017 and added into a column. It should be seen like below:
Any Ideas?
Solved! Go to Solution.
May be this Column
Column = VAR Previous_Year = CALCULATE ( SUM ( Table1[Profit] ), ALLEXCEPT ( Table1, Table1[Product] ), SAMEPERIODLASTYEAR ( Table1[Date] ) ) RETURN IF ( NOT ( ISBLANK ( Previous_Year ) ), Table1[Profit] - Previous_Year )
Try this measurE
Measure = VAR Previous_Year = CALCULATE ( SUM ( Table1[Profit] ), ALLEXCEPT ( Table1, Table1[Product] ), SAMEPERIODLASTYEAR ( Table1[Date] ) ) RETURN SUM ( Table1[Profit] ) - Previous_Year
Hi Zubair,
Your code works great for a Measure. Thanks for it. I actually need to create a new Column with these values, so that I can use the column for further calculations. Can you think of DAX to create new column for same requirement ???
May be this Column
Column = VAR Previous_Year = CALCULATE ( SUM ( Table1[Profit] ), ALLEXCEPT ( Table1, Table1[Product] ), SAMEPERIODLASTYEAR ( Table1[Date] ) ) RETURN IF ( NOT ( ISBLANK ( Previous_Year ) ), Table1[Profit] - Previous_Year )
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
69 | |
64 | |
51 | |
37 | |
26 |
User | Count |
---|---|
85 | |
55 | |
45 | |
44 | |
36 |