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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.