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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

How to calculate difference in value from 2 rows that are identified by 2 columns?

Hi, 

 

I'm trying to do up a report to show quarterly changes in a metric that I'm tracking. As seen in the table below, each row represents the results ('Quality' and 'Short-term Quantity) from a country in a quarter (i.e. Date). 

 

DateCountryQuality
31-Mar-21A0.5
31-Mar-21B0.43
30-Jun-21A0.22
30-Jun-21B0.5

 

I would then like to find out each country's difference in results, quarter over quarter. So that it looks like something like this:

DateCountryQualityShort-term QuantityDifference in Quality (measured against previous Quarter)
31-Mar-21A0.50.54n.a.
31-Mar-21B0.430.43n.a.
30-Jun-21A0.220.36-.28
30-Jun-21B0.50.54.07

 

I plan to have my data refreshed every quarter, so as a new quarter comes along, there will be new datapoints to reflect the results of the country in that new quarter. Currently struggling to even find out where to begin this or if this is even doable. Any help is greatly appreciated!! 

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@Anonymous,

 

Create a date table with column Qtr End Date, and create a relationship between the date table and fact table:

 

DataInsights_0-1632322346078.png

 

You can use the calculated column below in the date table:

 

Qtr End Date = ENDOFQUARTER ( DimDate[Date] )

 

Create measure:

 

Quantity Difference in Quality = 
VAR vCurrentQtr =
    MAX ( FactTable[Quality] )
VAR vLastQtr =
    CALCULATE ( MAX ( FactTable[Quality] ), DATEADD ( DimDate[Date], -1, QUARTER ) )
VAR vResult =
    IF (
        NOT ( ISBLANK ( vCurrentQtr ) || ISBLANK ( vLastQtr ) ),
        vCurrentQtr - vLastQtr
    )
RETURN
    vResult

 

Create visual using DimDate[Qtr End Date]:

 

DataInsights_1-1632322531559.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous,

Did DataInsights 's suggestions help with your scenario? if that is the case, you can consider Kudo or accept this suggestion to help others who faced similar requirements.

If these also don't help, please share more detailed information to help us clarify your scenario to test.

How to Get Your Question Answered Quickly 

Regards,

Xiaoxin Sheng

DataInsights
Super User
Super User

@Anonymous,

 

Create a date table with column Qtr End Date, and create a relationship between the date table and fact table:

 

DataInsights_0-1632322346078.png

 

You can use the calculated column below in the date table:

 

Qtr End Date = ENDOFQUARTER ( DimDate[Date] )

 

Create measure:

 

Quantity Difference in Quality = 
VAR vCurrentQtr =
    MAX ( FactTable[Quality] )
VAR vLastQtr =
    CALCULATE ( MAX ( FactTable[Quality] ), DATEADD ( DimDate[Date], -1, QUARTER ) )
VAR vResult =
    IF (
        NOT ( ISBLANK ( vCurrentQtr ) || ISBLANK ( vLastQtr ) ),
        vCurrentQtr - vLastQtr
    )
RETURN
    vResult

 

Create visual using DimDate[Qtr End Date]:

 

DataInsights_1-1632322531559.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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