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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I tried to find percenatge differnce with the two values...its calcualtion perfectly done in power bi .Here am adding data exported from power bi for reference...
1st image is data for calcualtion...ie...here am taking two month average rate for comparison...So...March2020 with April2020 by formula as
Rate change value=(New value-old value)/old value
is getting...correctly...But now i am facing here an issue.
2nd image Monthly june 2021 is coming which is not needed and not in the listed in 1st image ...So..Is there any solution for removing june 2021 from the list?plse help..
steps i used are
Average rate=average(values)
Solved! Go to Solution.
@Anonymous , Try like
Rate Change =
if(isblank([Average rate]), blank(),
IF (
NOT ISBLANK ( [Previous Month]),
DIVIDE (
[Average rate] - [Previous Month],
[Previous Month]
)
))
@Anonymous , Try like
Rate Change =
if(isblank([Average rate]), blank(),
IF (
NOT ISBLANK ( [Previous Month]),
DIVIDE (
[Average rate] - [Previous Month],
[Previous Month]
)
))
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!