Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
Matrix visual as shown below , displays the sub level details even if there is only one sub level.
I want to hide the sub level if there is only one sub level, in this case to display only upto "Provincial" level , coz values is same in only one sub level i.e. "ADP (Provincial)"
Any Help ?
Solved! Go to Solution.
Hi @Arshadjehan ,
Sorry for misunderstanding your request. Here we cannot filter the matrix directly, we can create measure to work on it.
sum of be =
VAR dis =
DISTINCTCOUNT ( 'Table'[sub2] )
var be = SUM('Table'[BE])
var a = IF(dis = 1
&& ISINSCOPE ( 'Table'[sub2] )
&& OR (
SUM ( 'Table'[Release] )
= CALCULATE ( SUM ( 'Table'[Release] ), ALL ( 'Table'[sub2] ) ),
SUM ( 'Table'[Release] ) = 0),TRUE())
var b =
IF(dis = 1
&& ISINSCOPE ( 'Table'[sub2] )
&& OR (
be
= CALCULATE ( be, ALL ( 'Table'[sub2] ) ),
be = 0),TRUE())
RETURN
IF (
a&&b,
BLANK(),be
)
For more details, please check the pbix as attached.
Hi @Arshadjehan ,
Sorry for misunderstanding your request. Here we cannot filter the matrix directly, we can create measure to work on it.
sum of be =
VAR dis =
DISTINCTCOUNT ( 'Table'[sub2] )
var be = SUM('Table'[BE])
var a = IF(dis = 1
&& ISINSCOPE ( 'Table'[sub2] )
&& OR (
SUM ( 'Table'[Release] )
= CALCULATE ( SUM ( 'Table'[Release] ), ALL ( 'Table'[sub2] ) ),
SUM ( 'Table'[Release] ) = 0),TRUE())
var b =
IF(dis = 1
&& ISINSCOPE ( 'Table'[sub2] )
&& OR (
be
= CALCULATE ( be, ALL ( 'Table'[sub2] ) ),
be = 0),TRUE())
RETURN
IF (
a&&b,
BLANK(),be
)
For more details, please check the pbix as attached.
Hi @Arshadjehan ,
Please enable the option "show items with no data " for the rows in your matrix visual.
@v-frfei-msft I probably couldnt make you understand what I want!
I want to hide the sub level, if there is only one sub level, and to show as parent level only.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
84 | |
84 | |
73 | |
49 |
User | Count |
---|---|
143 | |
132 | |
110 | |
64 | |
55 |