Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I'm trying to replace values in a single text column that begin with a specifc character. Something like
Table.ReplaceValue(#"Merged Columns","3%",null,Replacer.ReplaceValue,{"Column2"}), but I can't figure out the correct syntax.
Thanks in advance for any help.
Bryce
Solved! Go to Solution.
Hi @brycedwhite ,
According to your description, I create a sample.
In my understanding, if the cell begin with 3% then replace the cell to null. Here's my solution:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclSK1YlWMlZ1AtPOYNLFWBUqqhQbCwA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column2 = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column2", type text}}),
#"New" = Table.ReplaceValue(#"Changed Type",each [Column2], each if Text.StartsWith(Text.From([Column2]),"3%") then null else [Column2],Replacer.ReplaceValue,{"Column2"})
in
#"New"
Get the correct result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @brycedwhite ,
According to your description, I create a sample.
In my understanding, if the cell begin with 3% then replace the cell to null. Here's my solution:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclSK1YlWMlZ1AtPOYNLFWBUqqhQbCwA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column2 = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column2", type text}}),
#"New" = Table.ReplaceValue(#"Changed Type",each [Column2], each if Text.StartsWith(Text.From([Column2]),"3%") then null else [Column2],Replacer.ReplaceValue,{"Column2"})
in
#"New"
Get the correct result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Might be easier to use the Table.TransformColumns function:
= Table.TransformColumns(#"Merged Columns",{"Column2", each if Text.StartsWith(_,"3%")
then null else _})
OR
#"Starts with" = Table.TransformColumns(#"Merged Columns",{"Column2", each if Text.StartsWith(_,"3%")
then Text.ReplaceRange(_,0,2,"") else _})
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 6 | |
| 5 |