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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi,
I have a very interesting transformation that I want to do with the least calculations.
I have a few tag names in my Tag Names column
I'm trying to do 2 things. First, extract all the tags that start from R(R stands for release). Ultimately in 1 row if i have 2 tags that start from R, I'm then trying to get the minimum of 2 tags.
E.g. For R1;R2 row, I expect R1 as output
For Global;L1;R5;R6 row I expect output to be R5.
I want to have this solution in the query editor only(using M code)
Solved! Go to Solution.
Hi @Anonymous
To catch that last R5 you'll need to do a case insensitive match and then transform the resulting text to Upper Case. The line to do this when you add the custom column is
= Text.Upper(List.First(List.Select(Text.Split([Tag Names], ";"), each Text.Contains(_,"R",Comparer.OrdinalIgnoreCase)))))
Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
Also, If I add a new string
This is not working anymore
For e.g. in the last row I should have got R4 as output
Hi @Anonymous
Change List.First to List.Min
Text.Upper(List.Min(List.Select(Text.Split([Tag Names], ";"), each Text.Contains(_,"R",Comparer.OrdinalIgnoreCase))))
Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
Hi @Anonymous
To catch that last R5 you'll need to do a case insensitive match and then transform the resulting text to Upper Case. The line to do this when you add the custom column is
= Text.Upper(List.First(List.Select(Text.Split([Tag Names], ";"), each Text.Contains(_,"R",Comparer.OrdinalIgnoreCase)))))
Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
Hi Philip,
Thank You. Your calculation works.
Please also do a favour of explaining the solution in parts
You can add a custom column in the query editor to get your desired result with this formula
= List.First(List.Select(Text.Split([Tag Names], ";"), each Text.Contains(_,"R")))
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 41 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 150 | |
| 107 | |
| 64 | |
| 36 | |
| 36 |