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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
bvilten
Helper III
Helper III

Help with Path sort of

I have a table from AD

indexuser.__indexManager_Level_06manager.__indexManager_Level_05Manager_Level_04employeeIDuserPrincipalNameMgrPrincipalNameManager_PathPathLength
93Full NameUser NameMgr NameMgr Name Direct (903)Mgr Name Next Level(354)FN1234[email protected][email protected]354|903|933

 

I am trying to build a dropdown filter that reflects the logged in user and all their reports not just direct report. Using these two measures I have made it work for a given manager and direct reports.

 

ReportViewer = USERPRINCIPALNAME()

// This measure below checks to see if the logged in user is a manager
// if not all datea are restricted to the logged in user id by adding MgrUserFilter directly // to a measure where MgrUserFilter is 1

MgrUserFilter = 
IF(
    SELECTEDVALUE(TechMgrEmail[MgrPrincipalName])  = [ReportViewer] || SELECTEDVALUE(TechMgrEmail[userPrincipalName])  = [ReportViewer] ,1,0
)

 

I want to have logged in user 903 see user 93 and logged in user 354 should see 903 and 93. The path comes with the table. there are 15,000 plus rows so recreating a path would be painful.

 

I would truly appreciate your assistance.

 

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

Hi @bvilten 

To check whether a particular user should be visible (i.e. whether they are either the logged in user or somewhere below the logged in user in the hierarchy), you can check whether the Index of the current user is in the Manager_Path of each user.

 

You could write your MgrUserFilter as this:

MgrUserFilter =
VAR CurrentUserIndex =
    LOOKUPVALUE (
        TechMgrEmail[index],
        TechMgrEmail[userPrincipalName], [ReportViewer]
    )
RETURN
    -- Return 0/1
    INT (
        PATHCONTAINS ( SELECTEDVALUE ( TechMgrEmail[Manager_Path] ), CurrentUserIndex )
    )

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

View solution in original post

2 REPLIES 2
OwenAuger
Super User
Super User

Hi @bvilten 

To check whether a particular user should be visible (i.e. whether they are either the logged in user or somewhere below the logged in user in the hierarchy), you can check whether the Index of the current user is in the Manager_Path of each user.

 

You could write your MgrUserFilter as this:

MgrUserFilter =
VAR CurrentUserIndex =
    LOOKUPVALUE (
        TechMgrEmail[index],
        TechMgrEmail[userPrincipalName], [ReportViewer]
    )
RETURN
    -- Return 0/1
    INT (
        PATHCONTAINS ( SELECTEDVALUE ( TechMgrEmail[Manager_Path] ), CurrentUserIndex )
    )

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

Thank you Owen,

You provided the exact solution I needed. I had finally stumbled across the VLOOKUP function but wasn't sure how to apply it.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.