Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

percentage differnce in power bi

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..

 

ss.PNG

ss1.PNG

steps i used are

Average rate=average(values)

Previous Month = CALCULATE ( [Average rate], DATEADD ( 'Calendar'[Date], -1, MONTH ) )
Rate Change =
IF (
NOT ISBLANK ( [Previous Month]),
DIVIDE (
[Average rate] - [Previous Month],
[Previous Month]
)
)
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try like

 

Rate Change =
if(isblank([Average rate]), blank(),
IF (
NOT ISBLANK ( [Previous Month]),
DIVIDE (
[Average rate] - [Previous Month],
[Previous Month]
)
))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , Try like

 

Rate Change =
if(isblank([Average rate]), blank(),
IF (
NOT ISBLANK ( [Previous Month]),
DIVIDE (
[Average rate] - [Previous Month],
[Previous Month]
)
))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors