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 all
This is likely simple and i'm over doing it - But please help.
I have a dataset, there's 1 row per application.
There is a text string column for 'Region' which is annoyingly grouped whatever region the end user has selected, deliminated by a comma.
I need to be able to present the data by region with a sum of applications and costs.
I have used search to identify if a string like "region 1" exists in a row and then gone onto use Switch true to identify where the search result is greater than 0.
This works but only for the rows where the region is the first in the string value. e.g.
Region String = "Region 1, Region 2"
Switch Result = "Region 1"
This is really frustrating. I have a look up table i can use, but given rows can have more than 1 region selected - I'm hitting my head against the wall.
Solved! Go to Solution.
Hi @Anonymous ,
To create a calculated column as below.
Column =
VAR se =
SEARCH ( "Region 1", 'Table1'[Region String], 1, BLANK () )
RETURN
IF ( ISBLANK ( se ), BLANK (), "Region1" )
Hi,
Share a dataset and show the expected result.
Hi @Anonymous ,
To create a calculated column as below.
Column =
VAR se =
SEARCH ( "Region 1", 'Table1'[Region String], 1, BLANK () )
RETURN
IF ( ISBLANK ( se ), BLANK (), "Region1" )
Hi @Anonymous ,
Does that make sense? If so kindly mark my answer as a solution to close the case. Thanks in advance.
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 |
|---|---|
| 32 | |
| 25 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |