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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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