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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.