Forum Discussion

abhi87's avatar
abhi87
Helper I
5 years ago
Solved

Grouping in Treemap

Hello,   I'm trying to group categories in the treemap into bigger categories. I was wondering if that is possible. The below screenshot is what I have right now and I want it to look like this sec...
  • parry2k's avatar
    5 years ago

    abhi87 only way is to create another column and group road type together, for example:

     

    New Column = 
    SWITCH ( TRUE(),
       Table[RoadType] IN { "A", "B", "C" }, "Big Roads",
       Table[RoadType] IN { "X", "Y", "Z" }, "City Roads",
       Table[RoadType] IN { "M", "P }, "Local Roads",
       "Small Roads"
    )

     

    And use this new column in your visual, you can tweak the logic as you see fit.

     

    Follow us on LinkedIn

     

    Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

     

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.