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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Path Function with multiple classification/grouping

Hi,

 

I am currently working on Org Structure data with Parent-Child heirarchy. My data consists of multiple companies and I want to build Path functions on it. example PATH, PATHITEM etc

 

Sample

Company_id   Employee_id   Supervisor_id

a                      1                                         

a                      2                       1

a                      3                       1

a                      4                       2

b                      1

b                      2                       1

b                      3                       1

 

Bu thtese functions need unique identifier. Is there a way I can group these items  by Company and run the path functions as new columns on them Tried the below dax function but it thre me an error

 

Path = SUMMARIZE(Data,Data[Company_Id],"Path",PATH(Data[Employee_Id],Data[Supervisor_Id]))
 
Thanks,
Brian Alva

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Create combine columns and try

 

Employee_Code = [Company_id] & "-" & [Employee_ID]

SupervisorCode = [Company_id] & "-" & [Supervisor_id]

 

 

or try a new column like  , I have not tested this

calculate(PATH(Data[Employee_Id],Data[Supervisor_Id]), filter(Data, Data[Company_id] = earlier(Data[Company_id])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Create combine columns and try

 

Employee_Code = [Company_id] & "-" & [Employee_ID]

SupervisorCode = [Company_id] & "-" & [Supervisor_id]

 

 

or try a new column like  , I have not tested this

calculate(PATH(Data[Employee_Id],Data[Supervisor_Id]), filter(Data, Data[Company_id] = earlier(Data[Company_id])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Thanks @amitchandak, The formula did not work but the concatenation did.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors