Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I downloaded a .txt file. I want to split [Column23] and split at each occurrence of the delimiter. For my delimiter (with leading and trailing spaces to isolate), how can I use the following list?
Since the list values reoccur (within a row) in [Column23], I can't simply use Splitter.SplitTextByDelimiter in 4 steps (for each list value). Thanks!
| Delimiter |
| D |
| W |
| P |
| X |
Solved! Go to Solution.
Hi @Anonymous ,
Could the Splitter.SplitTextByAnyDelimiter({"Delimiter1", "Delimiter2", Delimiter3"}, QuoteStyle.Csv)) solve your issue? 🙂
Something like this:
= Table.SplitColumn(#"Changed Type", "Column23", Splitter.SplitTextByAnyDelimiter({"D","W","P","X"},
QuoteStyle.Csv), {"Column23.1", "Column23.2", "Column23.3", "Column23.4"})
Let me know if this 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! | |
| #proudtobeasuperuser | |
Hi @Anonymous ,
Could the Splitter.SplitTextByAnyDelimiter({"Delimiter1", "Delimiter2", Delimiter3"}, QuoteStyle.Csv)) solve your issue? 🙂
Something like this:
= Table.SplitColumn(#"Changed Type", "Column23", Splitter.SplitTextByAnyDelimiter({"D","W","P","X"},
QuoteStyle.Csv), {"Column23.1", "Column23.2", "Column23.3", "Column23.4"})
Let me know if this 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! | |
| #proudtobeasuperuser | |
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 |
|---|---|
| 7 | |
| 7 | |
| 7 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 19 | |
| 14 | |
| 14 | |
| 11 | |
| 10 |