This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi - I am having a problem with a column I've created. I have a column in my data that I'd like to use as a filter; however, there are multiple values in this column I'd like to parse out. See table below for how data is being captured:
| Product | Region |
| A | South |
| B | East; South |
| C | East; North; South |
| D | North; West |
I want to create a filter for "Region" but have it only give "North", "South", "East", and "West" as the drop down options. Then, in the Power BI report, I still would like the Region data to show up as is in the table (i.e. details of multiple regions tagged to a product should not be lost, but for ease of filtering I don't want to select 3 different options just to see all products tagged to South).
I'm using the following to create a new column but it's not giving me all the rows tagged to a specific region properly. For example, the following would only return "South" if I clicked on "South" instead of "East; South", etc. as the "East; South" row only shows up if I click on East (it comes first in the code below, but I want to create a code that solves this issue):
Region =
SWITCH(
TRUE(),
CONTAINSSTRING('Sheet1'[Region],"North")=TRUE(),"North",
CONTAINSSTRING('Sheet1'[Region],"East")=TRUE(),"East",
CONTAINSSTRING('Sheet1'[Region],"West")=TRUE(),"West",
CONTAINSSTRING('Sheet1'[Region],"South")=TRUE(),"South")
How can I write a measure or column to pick up all the rows tagged to a specific region? I.e. for the "East; South" example, how can I ensure that when I create a filter with only the 4 regions, when I click on "East" and "South", "East; South" shows up both times?
Thanks in advance!
Solved! Go to Solution.
Hey @Anonymous ,
my recommendation is using data modeling to tackle your challenge. I derived two additional tables from the column Region of the table you provided, see the screenshot:
The table unique region string contains unique values of the region column:
The table slicer starts with the unique values of the region column, this column is duplicated. The duplicated column is renamed to slicer. The transform "Split by delimiter" is used as follows:
The result:
Based on these tables you can build the data model from the first picture, pay attention to the cross filter direction.
A report will show you this:
Hopefully, this helps to tackle your challenge.
Regards,
Tom
Hey @Anonymous ,
my recommendation is using data modeling to tackle your challenge. I derived two additional tables from the column Region of the table you provided, see the screenshot:
The table unique region string contains unique values of the region column:
The table slicer starts with the unique values of the region column, this column is duplicated. The duplicated column is renamed to slicer. The transform "Split by delimiter" is used as follows:
The result:
Based on these tables you can build the data model from the first picture, pay attention to the cross filter direction.
A report will show you this:
Hopefully, this helps to tackle your challenge.
Regards,
Tom
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 26 | |
| 25 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 52 | |
| 46 | |
| 23 | |
| 18 | |
| 18 |