Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

matrix column subtotal

Incorrect post

Apologies

  • 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]
    )


    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.

6 Replies

  • v-lid-msft's avatar
    v-lid-msft
    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.

    • Anonymous's avatar
      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

      • v-lid-msft's avatar
        v-lid-msft
        Community Support

        Hi Anonymous ,

         

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

         

         


        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.