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! Get ahead of the game and start preparing now! Learn more
Hi,
Sorry if this is an easy one. So I have the following Column with these values:
Sales
Sales - Purchases
Sales - Compressers
I would like to do this in m query and my expected result would be:
Sales
Purchases
Compressers
Can someone please let me know how to do that?
Thank you
Solved! Go to Solution.
Hi @JohnLow
You can replace the string "Sales - "with nothing to get your desired result.
= Table.ReplaceValue(Source,"Sales - ","",Replacer.ReplaceText,{"Column1"})
Here's the full example query in my PBIX file (above)
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCk7MSS1WitWBshR0FQJKi5IzEovRRJ3zcwuKUouLU4uA4rEA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
#"Replaced Value" = Table.ReplaceValue(Source,"Sales - ","",Replacer.ReplaceText,{"Column1"})
in
#"Replaced Value"
Regards
Phil
Proud to be a Super User!
Hi @JohnLow
You can replace the string "Sales - "with nothing to get your desired result.
= Table.ReplaceValue(Source,"Sales - ","",Replacer.ReplaceText,{"Column1"})
Here's the full example query in my PBIX file (above)
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCk7MSS1WitWBshR0FQJKi5IzEovRRJ3zcwuKUouLU4uA4rEA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
#"Replaced Value" = Table.ReplaceValue(Source,"Sales - ","",Replacer.ReplaceText,{"Column1"})
in
#"Replaced Value"
Regards
Phil
Proud to be a Super User!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |