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! Learn more
Hello,
I have a column which contains a number of different word values that repeat numerous times down the column.
Sometimes there's instances where the these words have extra text at the end and there's different delimiters used so its hard to predict and therefore I've not used that function.
Is there a way to just retain the standard word values and delete the extra text without knowing what that extra text will be? It happens across the majority of the different word values too.
So in the below table I'd like to only keep the non-red text. Thanks
| Status | Count |
| Backlog | 12 |
| Backlog - 26th Sept | 45 |
| Archived | 2 |
| Archived xyz | 0 |
| Archived-123 | 14 |
Solved! Go to Solution.
Hi @Anonymous
Why not try a custom column
if Text.Contains([Status], "Backlog") then "Backlog else
if Text.Contains([Status], "Archived") then "Archived" else [Status]
Thanks
Joe
If this post helps, then please Accept it as the solution
Hi @Anonymous
If you only need the first word, you can extract text before delimiter, and use "space" as char
Hi @Anonymous
Why not try a custom column
if Text.Contains([Status], "Backlog") then "Backlog else
if Text.Contains([Status], "Archived") then "Archived" else [Status]
Thanks
Joe
If this post helps, then please Accept it as the solution
Hi @Anonymous
How are we going to know your standard words? are they only 2 words --Backlog and Archived?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.