Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Replace Values in a column - Please Help

Hi,

I need to remove  and , charecters from the below column  values:

EMPT     ÂÂ

 

and I have used the below query , but it does not work for me:

 

#"Added Custom" = Table.AddColumn(#"Extracted Text Range", "Custom", each Text.Replace(Text.Remove([UNIT_STR_QTY],{"Â", "Ã"}), "#(00A0),#(00A0)", ""))

 

the above query gives me the below value:

EMPT‚ ‚ ‚ ‚ ‚ ‚

 

now If I just use the above query as :

#"Added Custom" = Table.AddColumn(#"Extracted Text Range", "Custom", each Text.Remove(Text.Remove([UNIT_STR_QTY],{"Â", "Ã"}), {","})),

 

It does not work for me and it still gives me:

EMPT‚ ‚ ‚ ‚ ‚ ‚

 

Please help me.

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

You can use this extra piece of code to get rid of the ,

 

 #"Replaced Value" = Table.ReplaceValue(Source,"‚","",Replacer.ReplaceText,{"Column1"})
in
    #"Replaced Value"

Goodluck! 🙂

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Yo can split the column from the first Ã and remove everything to the right of it.

also this will work:

    #"Replaced Value" = Table.ReplaceValue(#"Changed Type","Â","",Replacer.ReplaceText,{"Column1"}),
    #"Replaced Value1" = Table.ReplaceValue(#"Replaced Value","Â","",Replacer.ReplaceText,{"Column1"})
in
    #"Replaced Value1"

for the particular example given. If you have a more variety of data, please show a little more so i can adjust my methods.

Anonymous
Not applicable

Hi,

You code is woring on columns where I have only values as:

ÂÂ

but it did not works on the columns of values like:

     ÂÂ

or

MZ BERGER & CO INC (DISC) ÂÂ

 

Please help on this type of variations also.

Anonymous
Not applicable

You can use this extra piece of code to get rid of the ,

 

 #"Replaced Value" = Table.ReplaceValue(Source,"‚","",Replacer.ReplaceText,{"Column1"})
in
    #"Replaced Value"

Goodluck! 🙂

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors