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
Anonymous
Not applicable

matrix column subtotal

Incorrect post

Apologies

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

We can use the new measure to meet your requirement, but it need to adjust by your own matrix field:

 

MyVlaues =
SUMX (
    ADDCOLUMNS (
        GROUPBY ( 'TableMain', TableMain[id], TableMain[id_2] ), // put all the row and column field of your matrix here
        "Value", IF (
            COUNTROWS (
                FILTER (
                    ALLSELECTED ( 'TableMain' ),
                    AND (
                        AND (
                            'TableMain'[id] = EARLIER ( [id] ),
                            'TableMain'[id_2] = EARLIER ( [id_2] )
                            // put all the row and column field condition of your matrix here
                        ),
                        [Position] = "-ve"
                    )
                )
            ) + 0 > 0,
            1,
            0
        )
    ),
    [Value]
)

1.PNG


BTW, pbix as attached.

 

Best regards,

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

Community Support Team _ Dong Li
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

6 REPLIES 6
v-lid-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can try to use the following measure to meet your requirement:

 

MyVlaues =
COUNTROWS ( FILTER ( 'TableMain', 'TableMain'[Position] = "-ve" ) )

If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

 

Best regards,

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

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

Hi,
When I use your expression into the value of the matrix, it shows the same number in most of the cells which is incorrect

Hi @Anonymous ,

 

If this formula doesn't meet your requirement, Please show the exact expected result based on the Below Table.

 

31.PNG

 


BTW, pbix as attached.

 

Best regards,

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

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

Position value is either a 1 in case of "-ve" text, or 0 of other than "-ve" text
This bit in my matrix is fine, however, the total only shows 1 in some cases or 0 in other total. It is NOT summing the 1's in the row


@v-lid-msft wrote:

Hi @Anonymous ,

 

If this formula doesn't meet your requirement, Please show the exact expected result based on the Below Table.

 

31.PNG

 


BTW, pbix as attached.

 

Best regards,

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


 

Hi @Anonymous ,

 

We can use the new measure to meet your requirement, but it need to adjust by your own matrix field:

 

MyVlaues =
SUMX (
    ADDCOLUMNS (
        GROUPBY ( 'TableMain', TableMain[id], TableMain[id_2] ), // put all the row and column field of your matrix here
        "Value", IF (
            COUNTROWS (
                FILTER (
                    ALLSELECTED ( 'TableMain' ),
                    AND (
                        AND (
                            'TableMain'[id] = EARLIER ( [id] ),
                            'TableMain'[id_2] = EARLIER ( [id_2] )
                            // put all the row and column field condition of your matrix here
                        ),
                        [Position] = "-ve"
                    )
                )
            ) + 0 > 0,
            1,
            0
        )
    ),
    [Value]
)

1.PNG


BTW, pbix as attached.

 

Best regards,

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

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

 

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.