Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hi,
I want to display the values only at detail level and blank at summarized level in power BI matrix
So when i collapse column C
I wanted E and F to be blank
A, B & C are from first table and D ,E ,F from second table and the two tables are joined on column A
and as shown A can have multiple values of D (that means second table has multiple instances of A) one to many relationship between 1st and 2nd table
Solved! Go to Solution.
Good. Then try
Final Measure E = IF( ISINSCOPE (Table[D] ),MINX(Table, Table[E]),IF(NOT ISEMPTY('Table'),""))
Try
Final Measure E = IF (HASONEVALUE(Table[D] ),MINX(Table, Table[E]),IF(NO ISEMPTY('Table'),""))
Then it display blank for those rows which have multiple values of column D but not for the those which have single value
Good. Then try
Final Measure E = IF( ISINSCOPE (Table[D] ),MINX(Table, Table[E]),IF(NOT ISEMPTY('Table'),""))
Hi,
I am not sure how your datamodel looks like, but I suggesting using calculated measures for describing E and F, instead of just dragging columns directly from the table.
Please try using SELECTEDVALUE DAX function.
SELECTEDVALUE function - DAX | Microsoft Learn
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi @WTAS80486
something like
IF ( NOT HASONEVALUE ( 'Table'[D] ), [Measure E] )
IF ( NOT HASONEVALUE ( 'Table'[D] ), [Measure F )
@tamerj1 when I use this
on collapse
Then use
IF ( HASONEVALUE ( 'Table'[D] ), [Measure E] )
IF ( HASONEVALUE ( 'Table'[D] ), [Measure F )
because it is blank. Please try
IF ( HASONEVALUE ( 'Table'[D] ), [Measure E], "")
IF ( HASONEVALUE ( 'Table'[D] ), [Measure F], "" )
It becomes from this
to this
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
17 | |
15 | |
13 | |
10 | |
10 |