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
PBI_newuser
Post Prodigy
Post Prodigy

DAX: how to extract text after delimiter

Hi, how to create column to extract text after delimiter.

Data: 

8/12

2/1

3/4

Expected output:

12

1

4

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@PBI_newuser , In power query

new column Text.AfterDelimiter([Column], "/")

 

https://docs.microsoft.com/en-us/powerquery-m/text-afterdelimiter

 

in DAX

new column = right([Column], len([column]) - search("/",[Column],,0))

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

View solution in original post

2 REPLIES 2
LaRy
New Member

Hi, is it possible to extract columns from a situation like the one below?

 

Data: 

Numer nadania: 647400836356416129470819, Kod: INP_P1_PACZKOMATY, Identyfikator zamowienia: 55bf2550-a549-11ee-bda1-4bfbe848971d, Szczegy: Allegro Paczkomaty InPost; Order value = 459.00 PLN - w ramach Uslugi Allegro Smart

 

Numer nadania: 647400836307410122074978, Kod: INP_P1_PACZKOMATY, Identyfikator zamowienia: db2d1120-a54e-11ee-9699-ad9dc553161c, Szczegy: Allegro Paczkomaty InPost; Order value = 439.00 PLN - w ramach Uslugi Allegro Smart

 

Numer nadania: 647400446360467126849155, Kod: INP_P1_PACZKOMATY, Identyfikator zamowienia: 509d7fe0-a049-11ee-8480-632edde38ac0, Szczegy: Allegro Paczkomaty InPost; Order value = 51.57 PLN - w ramach Uslugi Allegro Smart

 

Expected output:

 

55bf2550-a549-11ee-bda1-4bfbe848971d

db2d1120-a54e-11ee-9699-ad9dc553161c

509d7fe0-a049-11ee-8480-632edde38ac0

 

thank you

amitchandak
Super User
Super User

@PBI_newuser , In power query

new column Text.AfterDelimiter([Column], "/")

 

https://docs.microsoft.com/en-us/powerquery-m/text-afterdelimiter

 

in DAX

new column = right([Column], len([column]) - search("/",[Column],,0))

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

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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