Chris Dunhill 3 Posted March 30, 2017 Share Posted March 30, 2017 Is it possible to add value labels onto a Tree Map where the hierarchy axis is determined by a nested hierarchy column I'd like to be able to continue using the slider to control the pruning but have the value shown at each level. I've seen concatenation-based solutions to this which work where atree-map is static but they do not allow you to use a hierarchy slider. Any thoughts Thanks in advance. C Link to comment Share on other sites More sharing options...
Stu Blair Posted March 31, 2017 Share Posted March 31, 2017 I hope the example below answers it... To create Example 1 (top right) tree map, two calculated columns were created with the following expressions: [Title (EmployeeID)] & " (" & string(Count() over ([Title (EmployeeID)])) & ")" [Country (CustomerID)] & " (" & string(Count(1) OVER ([Title (EmployeeID)],[Country (CustomerID)])) & ")" These were called [Title #] and [Country #] respectively and put into a hierachy column CREATE NESTED HIERARCHY [Low level] [Title #] AS [Title #], [Country #] AS [Country #] Link to comment Share on other sites More sharing options...
Chris Dunhill 3 Posted April 4, 2017 Author Share Posted April 4, 2017 This is perfect - thank you very much for looking at this for me Stu. Link to comment Share on other sites More sharing options...
David Pesante 5 Posted May 1, 2018 Share Posted May 1, 2018 Is there a way for this to work with filtering (dynamic expression). Calculated columns look ok but does not support filtering. Link to comment Share on other sites More sharing options...
jayachandra reddy Posted May 7, 2019 Share Posted May 7, 2019 Thanks a lot Link to comment Share on other sites More sharing options...
edoardo piras Posted July 22, 2019 Share Posted July 22, 2019 Hello, this doesnt work with filtering. Can anyone support on that Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now