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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
maybevlad
Helper I
Helper I

Custom cluster

I have one colum with some values like

scot/english

english/scot

english

scot

so i want to filter my data by putting all this values in one cluster "english"

if it some easy way to do this?) i can make some more column and fill it with custom values like if ... then...

but mb its more easy way?

replace data not good variant, couse i want to update info every month.

 

 

1 ACCEPTED SOLUTION

Hi @maybevlad,

 

In this scenario, could you go to check if the custom visual Attribute Slicer on Power BI Visual Gallery helps?Smiley Happy

 

Regards

View solution in original post

3 REPLIES 3
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @maybevlad,

 

Have you tried using SEARCH function in this scenario? The formula below to create a new calculate column for cluster is for your reference.Smiley Happy

New Cluster =
IF (
    SEARCH ( "english", Table1[Column1], 1, 0 )
        + SEARCH ( "scot", Table1[Column1], 1, 0 )
        > 0,
    "English",
    "Others"
)

r1.PNG

 

Regards

Not so good) Couse i want to filter all info via 20+ claster and want to use for this "filter" vvisualisation, as i understand its impossible to do this using "search"

Hi @maybevlad,

 

In this scenario, could you go to check if the custom visual Attribute Slicer on Power BI Visual Gallery helps?Smiley Happy

 

Regards

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.