Forum Discussion
Using PATH(), How Do I Remove Blanks From My Hierarchy Between Levels?
Here is an excel screenshot for the table I used in the example in my previous reply for a clear look:
HI I_NeedMorePower,
I'd like to suggest you replace the first level parent field as itself value, current path function seems not works if parameter fields has null value.
Regards,
Xiaoxin Sheng
- I_NeedMorePower7 years agoHelper III
I found this blog explaining the workaround for the blanks in creating a heirarchy path:
https://www.wiseowl.co.uk/blog/s2479/parent-child-hierarchy.htm
The writer's work around is simply making the categories levels function to check if it is blank? then take the same value of the previous level.
here is the DAX function:
CategoryL6 = IF ( ISBLANK(PATHITEM ( [CategoryRecordId]; 6; INTEGER )) ; RetailProductHierarchyCategories[CategoryL5]; LOOKUPVALUE ( [CategoryName]; [CategoryRecordId]; PATHITEM ( [Path]; 6; INTEGER ) ) )
What this DAX function does is, it checks if this current level (in this DAX example Level 6) is blank....so if it's blank, then take the same value of the previous level. So it should replace the blanks with the previous values ending up with no blanks.
But when I applied it on my columns. it does not replace the blanks. like it does nothing. I tried to play around the ISBLANK() part, then it turned out it does not see the blank fields as blank...so it takes the false part of the IF always.....
I don't know why....
what can I do to make the ISBLANK() returns true on the blank fields?
Thanks.
- lukaszcracow6 years agoFrequent Visitor
Hi I_NeedMorePower ,
I am struggling with the same situation you've described. I'm creating a hierarchy and want to replace the BLANKs, but the expression IF(ISBLANK( doesn't read blank results of PATHITEM as BLANK..
Have you found a solution or any workaround?
All best,Lukas
- I_NeedMorePower6 years agoHelper III
Hi there lukaszcracow
I have looked back at the file and here is what I ended up with:
For Path Field:
Path = PATH(RetailProductHierarchyCategories[CategoryName];RetailProductHierarchyCategories[ParentCategoryName])and for Category Levels, here is the expression for each level field (Assuming for my case I have 6 Category Depth Levels):
CategoryL1 = PATHITEM(RetailProductHierarchyCategories[Path];1) CategoryL2 = IF(PATHITEM(RetailProductHierarchyCategories[Path];2) = "";RetailProductHierarchyCategories[CategoryL1];PATHITEM(RetailProductHierarchyCategories[Path];2)) CategoryL3 = IF(PATHITEM(RetailProductHierarchyCategories[Path];3) = "";RetailProductHierarchyCategories[CategoryL2];PATHITEM(RetailProductHierarchyCategories[Path];3)) CategoryL4 = IF(PATHITEM(RetailProductHierarchyCategories[Path];4) = "";RetailProductHierarchyCategories[CategoryL3];PATHITEM(RetailProductHierarchyCategories[Path];4)) ... CategoryL6 = IF(PATHITEM(RetailProductHierarchyCategories[Path];6) = "";RetailProductHierarchyCategories[CategoryL5];PATHITEM(RetailProductHierarchyCategories[Path];6))If you have less or more category levels, obviusly you have to remove or add more level fields.
What the Category Level fields that are after CategoryL1 do is, for each category level field:it looks into the path string and checks if the current level is available in the string or not.
For example:
Let's assume we have 6 category levels and the path string for one of the many categories is "Drinks | Cola"
the previous string has only 2 levels (Drinks and Cola), so what the CategoryL3,L4,L5,L6 do in the expressions I provided above is: it checks the path string (Drinks | Cola) for L3,L4,L5,L6 if it is "" (Blank).Then If it is "" (Blank) it means it doesn't have a category for this level (L3,L4,L5,L6)..... so what I did as a workaround to remove the "Blanks" from the category trea is, I take the last Level name and duplicate it for the next empty levels.
following our example above "Drinks | Cola", the result will be:
Drinks > Cola > Cola > Cola > Cola > Cola
I know this solution is not optimal, because when you are going to drill down the categories in the report visuals, you will keep drilling the cola till the 6th level.I ended up with this because it's at least readable. because getting the same value is better than getting blanks.
I hope this helps, and I don't know if there is a better solution.
If you found a better solution please let me know, i'm still learning too 😉
- I_NeedMorePower7 years agoHelper III
Hello there!
I tried what you suggested to me, to make the parent of the root the same name instead of null, but it gave me the same result.
It seems if I wanted to remove the blank leaves is only by using the heirarchy slicer with turning off the "empty leaves" option.
Thank you for your time to help :)