Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Polo87
Frequent Visitor

Categorize few labels to one option and use it in slicer.

Hi,


I have a case where I need to filter by labels However I need only WON, Lost and Others(Pending) which contains all other labels.
How Could I achieve it?

Polo87_0-1709723969950.png

 

2 ACCEPTED SOLUTIONS

@PowerBigginerHow could I modify it to exclude "Cancelled" label from Pending group? So it should content all labels except WON, LOST and Cancelled

LabelsGroup = 
SWITCH(
    TRUE(),
    'RequestTable-Splitted'[Planner_Labels] = "WON", "WON",
    'RequestTable-Splitted'[Planner_Labels] = "Lost", "Lost",
    'RequestTable-Splitted'[Planner_Labels] = "Cancelled", BLANK(),
    "Pending"
)

Will it work as I described?

EDIT: It will create Blank option with Cancelled label. How to hide it 🙂

View solution in original post

in filter section you can apply not to show blank

PowerBigginer_0-1709796837247.png

 

View solution in original post

3 REPLIES 3
PowerBigginer
Helper II
Helper II

Create New column in your table 

NewLable = SWITCH(TRUE(),tablename[Win_Status] = "WON","WON"
,tablename[Win_Status] = "Lost","Central","Pending")
Use this column in slicer

If it helps, Please Mark as a solution!

 

For more Power BI Tips & Trick visit my blog https://powertipstricks.blogspot.com/

Thanks In Advance!

@PowerBigginerHow could I modify it to exclude "Cancelled" label from Pending group? So it should content all labels except WON, LOST and Cancelled

LabelsGroup = 
SWITCH(
    TRUE(),
    'RequestTable-Splitted'[Planner_Labels] = "WON", "WON",
    'RequestTable-Splitted'[Planner_Labels] = "Lost", "Lost",
    'RequestTable-Splitted'[Planner_Labels] = "Cancelled", BLANK(),
    "Pending"
)

Will it work as I described?

EDIT: It will create Blank option with Cancelled label. How to hide it 🙂

in filter section you can apply not to show blank

PowerBigginer_0-1709796837247.png

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.