Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Greetings all,
I’m nesting the Text.BetweenDelimiters function within a Text.Select function and I’m getting a result that looks wrong. It looks like the BetweenDelimiters function is not working property; is this a bug or am I not understanding how the BetweenDelimiters works?
I’m trying to extract inbound ocean container IDs (from a SharePoint calendar if it matters). Those container IDs are surrounded by a dash at the front and an open paren after the ID. Hence, extraction between delimiters “-“, “(“.
That works great when both delimiters are present, I am indeed getting my container ID.
However, I believe that where there is no second delimiter, a null result should come back; all those “56pallets” should be null, yes?
Why is the Text.BetweenDelimiters function happy to ignore the absence of the second, enclosing delimiter?
Thanks!
The code might be hard to read in the screen snip, here is the text of the code:
= Table.AddColumn(#"Changed Type1", "Container ID", each
Text.Select
(Text.BetweenDelimiters([Event Title], "-", "(" ),
{"a".."z", "A".."Z", "0".."9"})
)
Solved! Go to Solution.
Hi @Anonymous ,
Then nest your formula with if Text.Contains functions.
Like if the Event Title contains "-" and "(" then your nested formula else, null
You think that will work for you?
🎉😊👏🎉
= Table.AddColumn(#"Changed Type1", "Container ID", each
if Text.Contains ([Event Title], "-") and Text.Contains ([Event Title], "(") then
Text.Select
(Text.BetweenDelimiters([Event Title], "-", "(" ),
{"a".."z", "A".."Z", "0".."9"})
else null)
Hi @Anonymous ,
Then nest your formula with if Text.Contains functions.
Like if the Event Title contains "-" and "(" then your nested formula else, null
You think that will work for you?
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |