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

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.

Reply
HILGARTH
Frequent Visitor

Extracting an variable alphanumeric ID out of a text

How to extract out of “Column Description” the alphanumeric ID that always starts with the letter P and is followed by 7 digits and put it in a separate column?

Column Description

Charles has engaged on Project P5671223 with Peter

with P8702345 the delivery succeeds to saint Paul and Mary

together with others P9906123 was a success

William and John knew about P8765439

Paul and Peter as well as Anne like the breeze P9908765 brings

1 ACCEPTED SOLUTION
Etero
Frequent Visitor

I couldn't do it with DAX, but if M code is okay then

= Text.Middle(Text.Select([Column Description], {"0".."9"}), Text.PositionOf(Text.Select([Column Description], {"P", "0".."9"}), "P")

View solution in original post

4 REPLIES 4
Jayaselvan
Helper II
Helper II

New Column =
VAR _Description = Table[Column Description]
VAR _Pattern = "P\d{7}"
VAR _Match = REGEXMATCH(Table[Column Description], "P\d{7}")
VAR _ExtractedID = IF(_Match, REGEXEXTRACT(_Description, _Pattern), BLANK())
RETURN _ExtractedID

Thx for this proposal - took me a second to find out that this is R 🙂

Etero
Frequent Visitor

I couldn't do it with DAX, but if M code is okay then

= Text.Middle(Text.Select([Column Description], {"0".."9"}), Text.PositionOf(Text.Select([Column Description], {"P", "0".."9"}), "P")

nice - quick & easy done.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.