Forum Discussion
Multiple Slicer Drop Downs - Same Field/One Chart
- Anonymous9 years ago
Hi LH01,
Current power bi only support analysis date value as date hierarchy.
For your scenario, you can follow below steps to manually create a custom hierarchy column.
Source table:
1. Add calculated column to analysis the hierarchy level.
Hierarchy = PATH([ID],[Parent])
2. Add calculated column to store the different level columns.
Level 1 = PATHITEM([Hierarchy],1) Level 2 = PATHITEM([Hierarchy],2) Level 3 = PATHITEM([Hierarchy],3)
3. Use these level columns to create hierarchy column.
4. Use this hierarchy column as the source of hierarchy slicer.
Regards,
Xiaoxin Sheng
Hi LH01,
Current power bi only support analysis date value as date hierarchy.
For your scenario, you can follow below steps to manually create a custom hierarchy column.
Source table:
1. Add calculated column to analysis the hierarchy level.
Hierarchy = PATH([ID],[Parent])
2. Add calculated column to store the different level columns.
Level 1 = PATHITEM([Hierarchy],1) Level 2 = PATHITEM([Hierarchy],2) Level 3 = PATHITEM([Hierarchy],3)
3. Use these level columns to create hierarchy column.
4. Use this hierarchy column as the source of hierarchy slicer.
Regards,
Xiaoxin Sheng