Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I am new in Power BI and DAX, need to compare each year summary with the previous year, tried many examples from the forum, nothing works for me, do not understand why the last year columns are empty.
Tried the folowing measures:
Last Year = CALCULATE(sum(Volume[Volume]), SAMEPERIODLASTYEAR(Dates[Date]))
Last Year 2 = calculate(sum(Volume[Volume]), PREVIOUSYEAR(Dates[Date]))
And the tables structure:
Please help! Thank you!
Solved! Go to Solution.
Try to tweak your measures following below sample. Check more details in the attached file.
lastYear = CALCULATE(SUM(Table1[value]),PREVIOUSYEAR(Dates[Date])) last2Year = CALCULATE([lastYear],PREVIOUSYEAR(Dates[Date]))
Try to tweak your measures following below sample. Check more details in the attached file.
lastYear = CALCULATE(SUM(Table1[value]),PREVIOUSYEAR(Dates[Date])) last2Year = CALCULATE([lastYear],PREVIOUSYEAR(Dates[Date]))
User | Count |
---|---|
97 | |
77 | |
77 | |
48 | |
26 |