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
michellepace
Resolver III
Resolver III

Calculated Columns: split by deliminator "value1 - value 2 - "

Good evening, 

Could someone please help me with some nice clean DAX for each of the subsequent columns listed below? 

a.png

Many thanks
Michelle

 

RAW

Split This
Just one value
Sometimes - I have two
And when I am - very lucky - then I can have three

And I can also - have a blank row - like in the above

 

3 REPLIES 3
camargos88
Community Champion
Community Champion

@michellepace ,

 

Try these calculated columns:

Value 1 = 
VAR _index1 = SEARCH("-", 'Table'[Split], 1, 0)
RETURN TRIM(IF(_index1 > 0, MID('Table'[Split], 1, _index1 - 1), 'Table'[Split]))

Value 2 = 
VAR _index1 = SEARCH("-", 'Table'[Split], 1, 0)
VAR _index2 = IF(_index1 > 0, SEARCH("-", 'Table'[Split], _index1 + 1, LEN('Table'[Split]) +1), 0)
RETURN TRIM(IF(_index2 > 0, MID('Table'[Split], _index1 + 1, _index2 - _index1 - 1), BLANK()))

Value 3 = 
VAR _index1 = SEARCH("-", 'Table'[Split], 1, 0)
VAR _index2 = IF(_index1 > 0, SEARCH("-", 'Table'[Split], _index1 + 1, 0), 0)
VAR _index3 = IF(_index2 > 0, SEARCH("-", 'Table'[Split], _index2, 0), 0)
RETURN TRIM(IF(_index3 > 0, MID('Table'[Split], _index2 + 1, LEN('Table'[Split]) - _index3), BLANK()))

 

Capture.PNG



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



michellepace
Resolver III
Resolver III

Thankyou for your reply. Unfortunately I do not have the option of using power query. Only a calculated column via Dax 

AlB
Super User
Super User

Hi @michellepace 

This is best done in Power Query. Just use the Split Column feature,  By delimiter, and choose "-" as delimiter

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

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.