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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
NISHA_S
Resolver I
Resolver I

average values percentage difference calculation in power bi

I have some data like this..

avg.PNG

average value is column which is calcualted as...

average value=CALCULATE(AVERAGE('table'[Individual policy rate])).
Month year= FORMAT('table'[invoice_date],"MMMM") & " " & YEAR('table'[invoice_date])
I want a column  percent_diff  like below..
 data11.PNG
Calcualtion is like
1)(0.827478081363868-1.41686698401274)/(1.41686698401274) .
2)(3.91472146059604-0.827478081363868)/(0.827478081363868)...
Is it possible in power bi?
                          
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @NISHA_S 

I tried to create a sample pbix file based on the explanation.

please check the below picture and the sample pbix file's link down below.

 

Picture6.png

 

1 Value Avg =
AVERAGE(Data[values])

 

2 Value Avg Previous Month =
CALCULATE ( [1 Value Avg], DATEADD ( 'Calendar'[Date], -1, MONTH ) )
 
3 Percent Diff =
IF (
NOT ISBLANK ( [2 Value Avg Previous Month] ),
DIVIDE (
[1 Value Avg] - [2 Value Avg Previous Month],
[2 Value Avg Previous Month]
)
)
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

1 REPLY 1
Jihwan_Kim
Super User
Super User

Hi, @NISHA_S 

I tried to create a sample pbix file based on the explanation.

please check the below picture and the sample pbix file's link down below.

 

Picture6.png

 

1 Value Avg =
AVERAGE(Data[values])

 

2 Value Avg Previous Month =
CALCULATE ( [1 Value Avg], DATEADD ( 'Calendar'[Date], -1, MONTH ) )
 
3 Percent Diff =
IF (
NOT ISBLANK ( [2 Value Avg Previous Month] ),
DIVIDE (
[1 Value Avg] - [2 Value Avg Previous Month],
[2 Value Avg Previous Month]
)
)
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.