Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
hi, I need ideas how can I convert string by encoding if it contains Letters or numbers.
Ex string= whf45po7, would give (l-letter, n-number): lllnnlln.
Dax or M.
Thanks in advance
Solved! Go to Solution.
Hi @blazko
Please see the M Function code below.
(String as text) => let split = Splitter.SplitTextByRepeatedLengths(1), splitText = split(String), checks = List.Transform(splitText, each if Value.Is(Value.FromText( _ ), type number) then "n" else "l"), combine = Text.Combine(checks) in combine
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @blazko
Please see the M Function code below.
(String as text) => let split = Splitter.SplitTextByRepeatedLengths(1), splitText = split(String), checks = List.Transform(splitText, each if Value.Is(Value.FromText( _ ), type number) then "n" else "l"), combine = Text.Combine(checks) in combine
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is freakin' awsome!
Dzięki!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
70 | |
57 | |
37 | |
36 |
User | Count |
---|---|
85 | |
65 | |
60 | |
46 | |
45 |