Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Team,
I found a great method in this forum to build out reporting lines using PATH. However, I have 2 challenges with this methodology and I couldn't find a solution anywhere so I figured I'd start here. I am building manager reporting lines starting at the CEO.
However, I do not want employees that are NOT managers showing up in the dropdown list, if possible. The other requirement is that I do not want it to include the manager's record if I am filtering on the manager to get records for his/her team.
The specific questions are:
I have included a link to a sample PBIX file I have in my Dropbox. Below is an image:
---
Any help would be great! Thanks so much!
Best,
A
Solved! Go to Solution.
Hi, @TakoTako
For the first problem you can try the following methods.
Measure:
Measure =
IF (
SELECTEDVALUE ( Active[Name] )
<> CALCULATE (
MAX ( Active[Manager] ),
FILTER ( ALL ( Active ), [Manager] = SELECTEDVALUE ( Active[Name] ) )
),
0,
1
)
Then put the measure into the filter of layer 1, 2, 3 and 4 slicer and set it equal to 1.
This way no non-manager names will appear in the layers.
The 2nd problem can be tried as follows.
Measure 2 =
IF(SELECTEDVALUE(Active[Layer 3])=SELECTEDVALUE(Active[Name]),0,1)
Put it in the filter as well and set it equal to 1. The output at this point is shown in the figure.
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @TakoTako
For the first problem you can try the following methods.
Measure:
Measure =
IF (
SELECTEDVALUE ( Active[Name] )
<> CALCULATE (
MAX ( Active[Manager] ),
FILTER ( ALL ( Active ), [Manager] = SELECTEDVALUE ( Active[Name] ) )
),
0,
1
)
Then put the measure into the filter of layer 1, 2, 3 and 4 slicer and set it equal to 1.
This way no non-manager names will appear in the layers.
The 2nd problem can be tried as follows.
Measure 2 =
IF(SELECTEDVALUE(Active[Layer 3])=SELECTEDVALUE(Active[Name]),0,1)
Put it in the filter as well and set it equal to 1. The output at this point is shown in the figure.
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Charlotte,
Thank you so much for this! The first measure works beautifully and I have added it to the model! This removes so much noise from the layers.
The 2nd one is great, too, however, it appears that I could really only do that to one layer AND I would have to apply it to each visual in my workbook. If I wanted to do it for each layer to ensure that person's record doesn't populate, it truncates too many rows. Is there any way to make this a little more forgiving? 😁 If not, item 1 is more than sufficient for right now.
Thank you!
Hi, @TakoTako
The second measure is to add to the view when you need to filter which view, which is by far the easiest way I can think of.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks Charlotte. Much appreciated.
Expanded for more clarity.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!