March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hope you have a good day,
I have a column with different values, how i can edit multiple cells in a column using edit query in Power BI
For Example i have below column:
Category |
brown |
yellow |
blue |
light blue |
brown |
light brown |
light blue |
I need below output:
Category |
Brown |
Yellow |
Blue |
Blue |
Brown |
Brown |
Blue |
Thanks in Avance
Solved! Go to Solution.
Hi, @vat2do
If you are not good at coding, you can also try the buttons on the visual interface.
Please try following steps:
1. Select column 'Category' ->go to 'Transform' ->replace Values
Replace Value 'light ' with Value ''
2. go to 'Transform' ->'Format' ->'Capitalize each word'
Result:
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @vat2do
If you are not good at coding, you can also try the buttons on the visual interface.
Please try following steps:
1. Select column 'Category' ->go to 'Transform' ->replace Values
Replace Value 'light ' with Value ''
2. go to 'Transform' ->'Format' ->'Capitalize each word'
Result:
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Your solution is in DAX or some other language
In power Query, not in Dax.
@vat2do In power query first select column and replace "light " with blank
Then transform the column by category "capitalize each word"
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WSirKL89TitWJVqpMzcnJLwczk3JKU8GMnMz0jBIFOBehGCqBzgcrjAUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Category = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Category", type text}}),
#"Replaced Value" = Table.ReplaceValue(#"Changed Type","light ","",Replacer.ReplaceText,{"Category"}),
#"Capitalized Each Word" = Table.TransformColumns(#"Replaced Value",{{"Category", Text.Proper, type text}})
in
#"Capitalized Each Word"
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |