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.
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 | ||
55 | 22 | This is the title from the parent | |
34 | This is the title from the parent |
Solved! Go to Solution.
Hi @die_kruzen
Yes, you can manipulate what to show by hierarchy level, using the ISINSCOPE function:
for example :
pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
@Ritaf1983 @amitchandak - thank you both for the info!! I wasn't aware of the ISINSCOPE....until now.
Happy to help😊
Hi @die_kruzen
Yes, you can manipulate what to show by hierarchy level, using the ISINSCOPE function:
for example :
pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
@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])
)
Check out the May 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 |
---|---|
72 | |
71 | |
70 | |
50 | |
46 |
User | Count |
---|---|
45 | |
38 | |
29 | |
29 | |
28 |