Forum Discussion
Classifying a pivot table
Hi,
I have Sales Table and a "pivot table" in my dashboard wich I'm trying to classify it. One of the columns shows the probability of closing that sale, that can be "Very high", "High", or "Medium".
I'd like to classify from "Very High" to "Medium", but the Power BI only allows me to classify alphabetically. How can I make this work?
Hi, Anonymous
As mentioned by selimovd ,you should create a calculated column rather than a measure, then sort column by this new calculated colum.
You can also consider creating the following sort table (here you also need to select the column "probability" and sort it by column "column1") . You need to use the field "probability" in this new table to create visual.
Please check my attached file for more details.
Best Regards,
Community Support Team _ Eason
4 Replies
- selimovdMost Valuable Professional
Hey Anonymous ,
you can create a sort by column in the table. This table should contain the order, something like this would do it:
SoryByColumn = SWITCH( TRUE(), myTable[classification] = "Very high", 1, myTable[classification] = "High", 2, myTable[classification] = "Medium", 3 )Then you have to set that as sort by column for your classification column:
Sort by column in Power BI Desktop - Power BI | Microsoft Docs
Then the default sort order is according to your sort by column, so "Very high" should appear first.
If you need any help please let me know.If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍Best regardsDenisBlog: WhatTheFact.biFollow me: twitter.com/DenSelimovic- AnonymousNot applicable
I've created this measure, but it just can't use a table as refer:
Am I putting the formula in the right place?
- v-easonf-msftCommunity Support
Hi, Anonymous
As mentioned by selimovd ,you should create a calculated column rather than a measure, then sort column by this new calculated colum.
You can also consider creating the following sort table (here you also need to select the column "probability" and sort it by column "column1") . You need to use the field "probability" in this new table to create visual.
Please check my attached file for more details.
Best Regards,
Community Support Team _ Eason