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
Yqy
Helper I
Helper I

split column by delimiter in dax

i need to split this column by the left most delimiter "/", how can i do this. 

I have the follwing code but it didn,t work for me

= LEFT('Data'[Column 1], FIND("/", 'Data'[Column 1])-1)
 
ABC/DDD/AAA/CCC ABCDDD/AAA/CCC
1 ACCEPTED SOLUTION
ichavarria
Solution Specialist
Solution Specialist

Hi @Yqy,

 

The formula you provided seems to be correct, but you may need to adjust it if the data in your column does not always have the same number of delimiter characters ("/").

Here's the modified formula that you can try:

= LEFT('Data'[Column 1], FIND("/", 'Data'[Column 1] & "/")-1)

The difference is that we added a "/" character at the end of the column data in the FIND function. This is to ensure that the formula always finds a delimiter character, even if the original data does not end with one.

 

Alternatively, you can use the Text.Split function to split the column data by the delimiter and extract the first element of the resulting list. Here's the formula for that:

 

= Text.Split('Data'[Column 1], "/"){0}

 

This formula splits the column data into a list using the delimiter "/", and then extracts the first element of the list (which corresponds to the text before the first delimiter).

 

 

Best regards, 

Isaac Chavarria

If this post helps, then please consider Accepting it as the solution and give Kudos to help the other members find it more quickly

View solution in original post

1 REPLY 1
ichavarria
Solution Specialist
Solution Specialist

Hi @Yqy,

 

The formula you provided seems to be correct, but you may need to adjust it if the data in your column does not always have the same number of delimiter characters ("/").

Here's the modified formula that you can try:

= LEFT('Data'[Column 1], FIND("/", 'Data'[Column 1] & "/")-1)

The difference is that we added a "/" character at the end of the column data in the FIND function. This is to ensure that the formula always finds a delimiter character, even if the original data does not end with one.

 

Alternatively, you can use the Text.Split function to split the column data by the delimiter and extract the first element of the resulting list. Here's the formula for that:

 

= Text.Split('Data'[Column 1], "/"){0}

 

This formula splits the column data into a list using the delimiter "/", and then extracts the first element of the list (which corresponds to the text before the first delimiter).

 

 

Best regards, 

Isaac Chavarria

If this post helps, then please consider Accepting it as the solution and give Kudos to help the other members find it more quickly

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.