Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi, how to create column to extract text after delimiter.
Data:
8/12
2/1
3/4
Expected output:
12
1
4
Solved! Go to Solution.
@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))
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
@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))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 62 | |
| 50 | |
| 45 |