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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
die_kruzen
Frequent Visitor

Remove Duplicating entries in Matix

Hello All. I have a parent/child relationship I am to display in a matrix. Is there a way to make it so 'This is the title from the parent' just appears once instead of for each child record?

 

Thank you in advance

 

REQID This is the title from the parent 
5522This is the title from the parent 
 34This is the title from the parent 
1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

Hi @die_kruzen 
Yes, you can manipulate what to show by hierarchy level, using the ISINSCOPE function:
for example :

title_ = if(ISINSCOPE('Table'[child]),"",max('Table'[title]))
The result :
Ritaf1983_0-1707796893483.png

pbix is attached

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

4 REPLIES 4
die_kruzen
Frequent Visitor

@Ritaf1983 @amitchandak - thank you both for the info!! I wasn't aware of the ISINSCOPE....until now.

 

 

@die_kruzen 

 Happy to help😊

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile
Ritaf1983
Super User
Super User

Hi @die_kruzen 
Yes, you can manipulate what to show by hierarchy level, using the ISINSCOPE function:
for example :

title_ = if(ISINSCOPE('Table'[child]),"",max('Table'[title]))
The result :
Ritaf1983_0-1707796893483.png

pbix is attached

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile
amitchandak
Super User
Super User

@die_kruzen , Assume the name of the parent column is parent and child is child , then have a measure like

 

New measure=

Switch(True(),

isinscope(Table[Child]) , blank(),

isinscope(Table[Parent]) , Max(Table[Text]) ,

Max(Table[Text])

)

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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