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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sandip
Helper III
Helper III

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.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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