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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply

All numeric totals in matrix with unichar.

I have the following matrix table with square unichar icons as data and numerical totals.When the total is derived by adding more than one value from the matrix all is fine. However, when the total comes from a single value then the total presents as a square icon. Here is a picture to demonstate the problem:

 

squareTable.png

 

As you can see, the totals for Team 4 and Stage 4 are icons. I would like these to present as numbers. Here is what the data looks like:

 

ProjectTeamTypeStage

Project 1Team 1Type 1Stage 1
Project 13Team 1Type 3Stage 2
Project 14Team 2Type 2Stage 1
Project 15Team 2Type 2Stage 1
Project 16Team 3Type 2Stage 1
Project 17Team 4Type 2Stage 1
Project 2Team 1Type 2Stage 2
Project 3Team 1Type 3Stage 3
Project 4Team 2Type 1Stage 4
Project 5Team 2Type 2Stage 1
Project 6Team 2Type 3Stage 2
Project 7Team 3Type 1Stage 3
Project 9Team 3Type 3Stage 1

 

And this is the measure I have used for the data values:

 

 
square = 
VAR _type1 =
    CALCULATE (
        COUNT ( 'Table'[Type] ),
        FILTER ( 'Table', 'Table'[Type] = "Type 1" )
    )
VAR _type2 =
    CALCULATE (
        COUNT ( 'Table'[Type] ),
        FILTER ( 'Table', 'Table'[Type] = "Type 2" )
    )
VAR _type3 =
    CALCULATE (
        COUNT ( 'Table'[Type] ),
        FILTER ( 'Table', 'Table'[Type] = "Type 3" )
    )
VAR _quare =
    REPT ( UNICHAR ( "128998" ), _type1 ) & REPT ( UNICHAR ( "128997" ), _type2 )
        & REPT ( UNICHAR ( "129000" ), _type3 )
RETURN
    IF (
        HASONEVALUE ( 'Table'[Stage] ),
        IF (
            HASONEVALUE ( 'Table'[Team] ),
            _quare,
            FORMAT ( COUNT ( 'Table'[Type] ), "General Number" )
        ),
        FORMAT ( COUNT ( 'Table'[Type] ), "General Number" )
    )

 

Here is a link to the pbix file if that makes it easier:

 

Project Matrix Table 

 

Any help would be greatly appreciated!

1 REPLY 1
daXtreme
Solution Sage
Solution Sage

Basically I have not yet seen a reliable method to check if one is on a row in a matrix or in the total row. If there are many rows in the matrix, you can always check if one value is visible or many (using HASONEVALUE, for instance). If one, then you know you're on an individual row. If many, you know it's the total. But a real problem arises if only one row is visible, or has been selected via a slicer, in the matrix. Then there's no way to distinguish between the two according to my knowledge.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.