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
obriaincian
Resolver I
Resolver I

Matrix sum of values not correct

I have a calculated table that calculates the amount of time the expiry date changes per SKU.

 

<DistinctMDDCrtExpiryDates =
SUMMARIZECOLUMNS('Data'[Data.SKU],"Change in Expiry Date",
CALCULATE(DISTINCTCOUNT('Data'[Data.Expiration Date]),'Data'[Expiration Date]<>BLANK()))>
 
The issue I'm experiencing is when I create a matrix it shows the total number of changes across the board for each SKU rather than the total number of changes per SKU.
e.g. Below we should not be seeing 744 (this is the total number of changes), what we should be seeing is the 744 should be split out amoung the 4 SKUs.
 
 

obriaincian_1-1646834965992.png

 

 

Some of the matrix is blocked out for confidentiality purposes.

 

Thanks

1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

Hi @obriaincian ,

 

According to your statement, I know that you have a hierachy level in your matrix visual. Is [...Segment] column in "Data" Table? I think you don't need to create a calculated table to aggregate value. Try to use virtual table in measure.

My Sample:

1.png

Measure:

Measure = 
VAR _SUMMARIZE = 
SUMMARIZE (
    Data,
    Data[Segment],
    'Data'[Data.SKU],
    "Change in Expiry Date",
        CALCULATE (
            DISTINCTCOUNT ( 'Data'[Data.Expiration Date] ),
            'Data'[Expiration Date] <> BLANK ()
        )
)
RETURN
SUMX(_SUMMARIZE,[Change in Expiry Date])

Result is as below.

1.png

 

Best Regards,
Rico Zhou

 

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

3 REPLIES 3
v-rzhou-msft
Community Support
Community Support

Hi @obriaincian ,

 

According to your statement, I know that you have a hierachy level in your matrix visual. Is [...Segment] column in "Data" Table? I think you don't need to create a calculated table to aggregate value. Try to use virtual table in measure.

My Sample:

1.png

Measure:

Measure = 
VAR _SUMMARIZE = 
SUMMARIZE (
    Data,
    Data[Segment],
    'Data'[Data.SKU],
    "Change in Expiry Date",
        CALCULATE (
            DISTINCTCOUNT ( 'Data'[Data.Expiration Date] ),
            'Data'[Expiration Date] <> BLANK ()
        )
)
RETURN
SUMX(_SUMMARIZE,[Change in Expiry Date])

Result is as below.

1.png

 

Best Regards,
Rico Zhou

 

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

 

amitchandak
Super User
Super User

@obriaincian , if you created a table and displaying it, with some other tables. This new table should be joined with those tables. I doubt that here.

 

If this does not help
Can you share sample data and sample output in table format?

Hi @amitchandak ,

Thank you for your response, I can't merge the created table back to the original table as I have grouped SKUs in the table I created, can you please suggest how I might go about this?

 

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.