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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
SK78
Frequent Visitor

Query looking for specific characters (not static position) but has variables after the delimiter

Looking for help with a query:

I have a record set as below, trying to achieve a result such that the query return the values GT-XXXX into a new column. The position of GT-XXXX in the cell is not static. Also note the value of XXXX is variable. 

SK78_1-1644072061935.png

Any help in this regard would be greatly appreciated. I am trying to achieve a result that translates into 

SK78_2-1644072290585.png

Thanks!

1 ACCEPTED SOLUTION
tackytechtom
Most Valuable Professional
Most Valuable Professional

Hi @SK78 ,

 

I got this result:

tomfox_1-1644077372449.png

 

Here the code in Power Query M that you can paste into the advanced editor (if you do not know, how to exactly do this, please check out this quick walkthrough)

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("ZY9LDoMwDETvwtqWYsfOR10BRXSDEiF2iPtfo0CrJlFXHsvPM/a+d33ux+eUkaNA0VppB/OGwTEMY1oYiVQE1m1F8mxsd0AxsYagaP5f1AYXfxGWLeQloQSVZqxGIlRNuGjmaOA1DjOScoApIYm2tkq3LZUnlM+ERxXxvYgpuB9E8ZNA/qwF8NVxxxs=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [customfield_all_links = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"customfield_all_links", type text}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each "GT-" & Text.BetweenDelimiters([customfield_all_links], "GT-", ","))
in
    #"Added Custom"

 

Alternatively, you can add a custom column and use this code snippet:

"GT-" & Text.BetweenDelimiters([customfield_all_links], "GT-", ",")

 

Let me know if it helps 🙂

 

/Tom

https://www.tackytech.blog

https://www.instagram.com/tackytechtom

 

 

 



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

View solution in original post

2 REPLIES 2
SK78
Frequent Visitor

@tackytechtom - Thank you - Works perfect!! 

tackytechtom
Most Valuable Professional
Most Valuable Professional

Hi @SK78 ,

 

I got this result:

tomfox_1-1644077372449.png

 

Here the code in Power Query M that you can paste into the advanced editor (if you do not know, how to exactly do this, please check out this quick walkthrough)

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("ZY9LDoMwDETvwtqWYsfOR10BRXSDEiF2iPtfo0CrJlFXHsvPM/a+d33ux+eUkaNA0VppB/OGwTEMY1oYiVQE1m1F8mxsd0AxsYagaP5f1AYXfxGWLeQloQSVZqxGIlRNuGjmaOA1DjOScoApIYm2tkq3LZUnlM+ERxXxvYgpuB9E8ZNA/qwF8NVxxxs=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [customfield_all_links = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"customfield_all_links", type text}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each "GT-" & Text.BetweenDelimiters([customfield_all_links], "GT-", ","))
in
    #"Added Custom"

 

Alternatively, you can add a custom column and use this code snippet:

"GT-" & Text.BetweenDelimiters([customfield_all_links], "GT-", ",")

 

Let me know if it helps 🙂

 

/Tom

https://www.tackytech.blog

https://www.instagram.com/tackytechtom

 

 

 



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors