Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
Solved! Go to Solution.
@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])))
@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])))
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |