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! Request now
My end goal is to try and get the percentage difference between month in claims $. I finally figured out how to get the Previous Month in my calculated table but I am not sure how to tell it for the January values it should be blank. Can anyone assist?
Thanks in advance.
Solved! Go to Solution.
Highly recommend you work on "measures" instead of "calculated columns".
Total Paid := SUM('Table'[Paid])
Total Paid - PM := CALCULATE([Total Paid], PREVIOUSMONTH(Dates[Date]))
Paid Growth := DIVIDE([Total Paid] - [Total Paid - PM], [Total Paid - PM])
In this way, your calculations will work, even if you start slicing on month groups, carrier groups, geography, etc.
Highly recommend you work on "measures" instead of "calculated columns".
Total Paid := SUM('Table'[Paid])
Total Paid - PM := CALCULATE([Total Paid], PREVIOUSMONTH(Dates[Date]))
Paid Growth := DIVIDE([Total Paid] - [Total Paid - PM], [Total Paid - PM])
In this way, your calculations will work, even if you start slicing on month groups, carrier groups, geography, etc.
Thank you so much! Seems I really was trying to make things hard on myself! Worked perfectly!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 76 | |
| 52 | |
| 51 | |
| 46 |