Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello,
With Covid 19 , I am trying to compare monthly "numbers" with the ones from last year but also from the same period in 2019 ...
My table is only 2 columns : date & number1
I am adding a column number2
Solved! Go to Solution.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated column.
number2 =
var _current='Table'[number1]
var _last=CALCULATE(SUM('Table'[number1]),FILTER(ALL('Table'),'Table'[Date]=DATE( YEAR(EARLIER('Table'[Date]))-1,MONTH(EARLIER('Table'[Date])),DAY(EARLIER('Table'[Date])))))
return
_current-_last
2. Result:
If I have misunderstood your meaning, please provide your desired output and your pbix file without privacy information.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated column.
number2 =
var _current='Table'[number1]
var _last=CALCULATE(SUM('Table'[number1]),FILTER(ALL('Table'),'Table'[Date]=DATE( YEAR(EARLIER('Table'[Date]))-1,MONTH(EARLIER('Table'[Date])),DAY(EARLIER('Table'[Date])))))
return
_current-_last
2. Result:
If I have misunderstood your meaning, please provide your desired output and your pbix file without privacy information.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Anonymous ,
Try to use calender date table in PARALLELPERIOD.
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hello, you mean the calendar date that I use as "date" reference in my Power BI ?
they are linked
same issue with
@Anonymous Yes try to use it.
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
@Anonymous Do you want to calculate 2019 and previous year on the same column?
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.