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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Evanooruvan
Helper II
Helper II

Combine 3 rows in matrix as extra row and calculate values in matrix visual

I have this matrix visual in powerbi

Evanooruvan_0-1669196962496.png

Now i want to add a extra row in matrix visual combining bxx,exx,fxx ( named as BEF) 
How to calculate values like below visual in powerbi matrix,

Evanooruvan_1-1669197179906.png

 

thank you, any help is appreciated 🙂

 

1 ACCEPTED SOLUTION

The easiest way is to create a new group with the companies as follows. First the model

model.jpg

In the company table, create a new group as follows:

Group.gif

grouped table.jpgNow create the matrix with the fields from the date and company tables and the measures to get:

matrix.jpg

Another alternative is to create the company table using:

 

Company with groups =
VAR _BEF =
    CALCULATETABLE (
        VALUES ( fTable[Company] ),
        FILTER (
            fTable,
            CONTAINSSTRING ( fTable[Company], "B" )
                || CONTAINSSTRING ( fTable[Company], "E" )
                || CONTAINSSTRING ( fTable[Company], "F" )
        )
    )
VAR _ROWS =
    DISTINCTCOUNT ( fTable[Company] )
RETURN
    ADDCOLUMNS (
        DISTINCT ( fTable[Company] ),
        "BEF",
            IF (
                fTable[Company] IN _BEF,
                CONCATENATEX ( _BEF, fTable[Company], " & " ),
                fTable[Company]
            ),
        "Order",
            IF (
                fTable[Company] IN _BEF,
                _ROWS + 1,
                RANKX ( ALL ( fTable[Company] ), fTable[Company],, ASC )
            )
    )

 

and then set up the matrix as follows

matrix 2.jpg

 

If you want to create the visual exactly as you posted it can be done (let us know).

Sample PBIX file attached





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

4 REPLIES 4
PaulDBrown
Community Champion
Community Champion

Is the new rows supposed to be bynamic (you intend to select the companies in a slicer for example) or will it be a fixed number of companies (always the same)?





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






It will be fixed for those 3 companies

The easiest way is to create a new group with the companies as follows. First the model

model.jpg

In the company table, create a new group as follows:

Group.gif

grouped table.jpgNow create the matrix with the fields from the date and company tables and the measures to get:

matrix.jpg

Another alternative is to create the company table using:

 

Company with groups =
VAR _BEF =
    CALCULATETABLE (
        VALUES ( fTable[Company] ),
        FILTER (
            fTable,
            CONTAINSSTRING ( fTable[Company], "B" )
                || CONTAINSSTRING ( fTable[Company], "E" )
                || CONTAINSSTRING ( fTable[Company], "F" )
        )
    )
VAR _ROWS =
    DISTINCTCOUNT ( fTable[Company] )
RETURN
    ADDCOLUMNS (
        DISTINCT ( fTable[Company] ),
        "BEF",
            IF (
                fTable[Company] IN _BEF,
                CONCATENATEX ( _BEF, fTable[Company], " & " ),
                fTable[Company]
            ),
        "Order",
            IF (
                fTable[Company] IN _BEF,
                _ROWS + 1,
                RANKX ( ALL ( fTable[Company] ), fTable[Company],, ASC )
            )
    )

 

and then set up the matrix as follows

matrix 2.jpg

 

If you want to create the visual exactly as you posted it can be done (let us know).

Sample PBIX file attached





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






thank you so much 🙂

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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