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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
cpereyra
Helper I
Helper I

Delimiter with Direct Query

I need to delimit the following column each time "~" shows. It won't let me do in in Edit Query because I have a Direct Query Connection. Does anyone know a dax to grab the text between "~" shows? Keep in mind that I will need to delimit each time the symbol shows.

Power BI Delimit.PNG

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @cpereyra,

Here I updated my sample PBIX file , please check if the newly added measures can get the expected results you want.In addition, if it is possible to handle with it in data source , then load the split columns into Power BI Desktop?

 

Best Regards

Rena

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi @cpereyra ,

You can create one measure as below,  please find full details in my sample PBIX file.The character "~" be displayed multiple times in text column "Extra_Fiels.PCC_ALL", here only get the characters between the first "~" and the last "~".

delimiter.JPG

 FPCC = IFERROR (

   MID (

       MAX ( 'PEC Work'[Extra_Fields.PCC_ALL] ),

       FIND ( "~", MAX ( 'PEC Work'[Extra_Fields.PCC_ALL] ) ) + 1,

       FIND (

           "@",

           SUBSTITUTE (

               MAX ( 'PEC Work'[Extra_Fields.PCC_ALL] ),

               "~",

               "@",

               LEN ( MAX ( 'PEC Work'[Extra_Fields.PCC_ALL] ) )

                   - LEN ( SUBSTITUTE ( MAX ( 'PEC Work'[Extra_Fields.PCC_ALL] ), "~", "" ) )

           ),

           1

       )

           - FIND ( "~", MAX ( 'PEC Work'[Extra_Fields.PCC_ALL] ) ) - 1

   ),

   ""

)

Best Regards

Rena

amitchandak
Super User
Super User

In Direct Query , You can not create a column, So you need to have a measure. And measure needs calculation. While mid, right , left and search will allow you to do that. You have to move most of your calculations inside x function like sumx, countx, minx etc

 

Like countx(Table,mid(table[Text],1,4))

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @

Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Connect on Linkedin

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
VasTg
Memorable Member
Memorable Member

@cpereyra 

 

Try this...

 

 

Column = 
VAR A = IFERROR(FIND("~",'Table (4)'[Column1]),0)
VAR B = IFERROR(FIND("~",'Table (4)'[Column1],A+1),0)-1
RETURN IFERROR(MID('Table (4)'[Column1],A+1,B-A),'Table (4)'[Column1])

 

image.png

 

If it helps, mark it as a solution

Kudos are nice too

 

Connect on LinkedIn

It does work but how would you go about additional delimiters on the same column. 

 

Ex.

 

PEC~Insurances - ~Homeowner 

 

Would need back three columns

1- PEC

2 - Insurances

3 - Homeowner

 

@Anonymous @VasTg @amitchandak 

Anonymous
Not applicable

Hi @cpereyra,

Here I updated my sample PBIX file , please check if the newly added measures can get the expected results you want.In addition, if it is possible to handle with it in data source , then load the split columns into Power BI Desktop?

 

Best Regards

Rena

Your link is removed.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors