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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi, I am begnieer on Power BI so need complete command or screen shot. Thanks in advance.
Now what i need is.
1. Tasks should be sorted with the WBS like 1 at Top then 1.1 then 1.2 and so on if there is sub task like 1.1.1 or more 1.1.1.1
It should show as below
Level1(Task Name/Main Task/Project Name)
Level2(Task Name)
Level 3(Task Name)
Level 4(Task Name)
2. I don't have column which shows task level as 1,2,3,4,5, i only have WBS which is 1, 1.1, 1.1.1, 1.1.1.1 form
Here is screen shot how does it looks like as of now.
Current state
Solved! Go to Solution.
Sorry for the confusion!
The previous one will give the just value of the level. It won't give like 1 -> 1.1 -> 1.1.1
The below one will work as expected
Steps:
Thanks for mentioning me😉
Are you happy to extract the levels from your TaskWBS column?
You may need to create 4 columns in this case.
Yes that's fine, but help me to create that first
Alright!
Steps:
Eg: Level1 = PATHITEM(TableName[DuplicateWBS],1)
It will work in your case!
Please try it and let me know.
Thanks,
Siva
I appreciate your kudos. Please do mark this as the solution if it solves your issue.
I have done it, New calculated coulmn
Great!
Similarly,
Tasklevel2 = PATHITEM('Tasks'[TaskWBS - Copy],2)
Tasklevel3 = PATHITEM('Tasks'[TaskWBS - Copy],3)
Tasklevel4 = PATHITEM('Tasks'[TaskWBS - Copy],4)
Use the newly created columns in your matrix instead of TaskWBS.
Done
Now i can see in taslevel1 the first digit of taskwbs value similarly in tasklevel2 second digit, taslklevel3 3rd digit, tasklevel4 4th digit of taskwbs-Copy
Sorry for the confusion!
The previous one will give the just value of the level. It won't give like 1 -> 1.1 -> 1.1.1
The below one will work as expected
Steps:
@SivaMani Yes it is working upto some extent however it's not 100% accurate, couldn't identify the any other issue.
1. Tasks showing at L0 is actually L3 tasks.
i m trying it and will update you back.
my logic is let's search for dot(.) in orginal wbs if count of (.) is zero then level0, if count of(.) is 1 then level 1 and so on, Please suggest if that is doable