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
Filipp
Regular Visitor

Difference from previous period in matrix

Hey guys,

 

I have a table with 5 columns:
RPT_DATE - reporting date
POS_TYPE - position type
CNUM - customer number
BSAACID - account number
OVP_CCY - position amount

 

The table consists of the data as of 2 dates. I want to make a matrix with RPT_DATE in columns and be able to view the absolute difference between 2 dates on every level. So basically I want this difference to be shown like a total column, ie I want only 3 columns in this table - data as of date 1, data as of date 2, difference. I put RPT_DATE as a column, POS_TYPE, CNUM, BSAACID as rows and the following formula in values field:

test_pos = if(min(D1[RPT_DATE])=max(D1[RPT_DATE]);CALCULATE(sum(D1[OVP_CCY]);FILTER(D1;D1[RPT_DATE]=MAX(D1[RPT_DATE])));CALCULATE(sum(D1[OVP_CCY]);FILTER(D1;D1[RPT_DATE]=MAX(D1[RPT_DATE])))-CALCULATE(sum(D1[OVP_CCY]);FILTER(D1;D1[RPT_DATE]=MIN(D1[RPT_DATE]))))

It works pretty good except cases when the data as of the date 2 are missing. In this cases if function returs True and I get positive difference instead of negative:

 

image.png
I believe there are easier ways to achieve my goal, please suggest what can be done.

2 ACCEPTED SOLUTIONS
v-jiascu-msft
Employee
Employee

Hi @Filipp,

 

The reason is that one value of the date is missed in the source data. Then the MIN and MAX return the same value. You can try this formula.

 

test_pos 2 =
VAR maxDate =
    CALCULATE ( MAX ( 'D1'[RPT_DATE] ); ALL ( D1 ) )
VAR minDate =
    CALCULATE ( MIN ( 'D1'[RPT_DATE] ); ALL ( d1 ) )
RETURN
    IF (
        HASONEFILTER ( D1[RPT_DATE] );
        SUM ( D1[OVP_CCY] );
        CALCULATE ( SUM ( D1[OVP_CCY] ); FILTER ( D1; D1[RPT_DATE] = maxDate ) )
            - CALCULATE ( SUM ( D1[OVP_CCY] ); FILTER ( D1; D1[RPT_DATE] = minDate ) )
    )

Difference from previous period in matrix.jpg

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

@


@v-jiascu-msft wrote:

Hi @Filipp,

 

The reason is that one value of the date is missed in the source data. Then the MIN and MAX return the same value. You can try this formula.

 

test_pos 2 =
VAR maxDate =
    CALCULATE ( MAX ( 'D1'[RPT_DATE] ); ALL ( D1 ) )
VAR minDate =
    CALCULATE ( MIN ( 'D1'[RPT_DATE] ); ALL ( d1 ) )
RETURN
    IF (
        HASONEFILTER ( D1[RPT_DATE] );
        SUM ( D1[OVP_CCY] );
        CALCULATE ( SUM ( D1[OVP_CCY] ); FILTER ( D1; D1[RPT_DATE] = maxDate ) )
            - CALCULATE ( SUM ( D1[OVP_CCY] ); FILTER ( D1; D1[RPT_DATE] = minDate ) )
    )

Difference from previous period in matrix.jpg

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale


@v-jiascu-msft, Hi Dale! Thank you very much, it works perfectly!!!

View solution in original post

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @Filipp,

 

The reason is that one value of the date is missed in the source data. Then the MIN and MAX return the same value. You can try this formula.

 

test_pos 2 =
VAR maxDate =
    CALCULATE ( MAX ( 'D1'[RPT_DATE] ); ALL ( D1 ) )
VAR minDate =
    CALCULATE ( MIN ( 'D1'[RPT_DATE] ); ALL ( d1 ) )
RETURN
    IF (
        HASONEFILTER ( D1[RPT_DATE] );
        SUM ( D1[OVP_CCY] );
        CALCULATE ( SUM ( D1[OVP_CCY] ); FILTER ( D1; D1[RPT_DATE] = maxDate ) )
            - CALCULATE ( SUM ( D1[OVP_CCY] ); FILTER ( D1; D1[RPT_DATE] = minDate ) )
    )

Difference from previous period in matrix.jpg

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@


@v-jiascu-msft wrote:

Hi @Filipp,

 

The reason is that one value of the date is missed in the source data. Then the MIN and MAX return the same value. You can try this formula.

 

test_pos 2 =
VAR maxDate =
    CALCULATE ( MAX ( 'D1'[RPT_DATE] ); ALL ( D1 ) )
VAR minDate =
    CALCULATE ( MIN ( 'D1'[RPT_DATE] ); ALL ( d1 ) )
RETURN
    IF (
        HASONEFILTER ( D1[RPT_DATE] );
        SUM ( D1[OVP_CCY] );
        CALCULATE ( SUM ( D1[OVP_CCY] ); FILTER ( D1; D1[RPT_DATE] = maxDate ) )
            - CALCULATE ( SUM ( D1[OVP_CCY] ); FILTER ( D1; D1[RPT_DATE] = minDate ) )
    )

Difference from previous period in matrix.jpg

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale


@v-jiascu-msft, Hi Dale! Thank you very much, it works perfectly!!!

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.