Forum Discussion
jshedhai
3 years agoRegular Visitor
how to replace double zeros
Hi - is there a way to replace these double zeros with just one zero? I have been struggling figuring this out. I copied the value and it looks like this;
"0
0"
Thanks
Hi jshedhai
You may try this
= Table.ReplaceValue(#"Changed Type","0#(lf)0","0",Replacer.ReplaceText,{"Data"})Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
3 Replies
- Greg_DecklerCommunity Champion
jshedhai Right-click the column header and choose Replace Values?
= Table.ReplaceValue(#"Changed Type","0 0","0",Replacer.ReplaceText,{"Data"}) - AntrikshSharmaCommunity Champion
ReplacedValue = Table.ReplaceValue ( AddedCustom, each if Text.Contains ( [Data], "#(lf)" ) then [Data] else false, each "0", Replacer.ReplaceText, {"Data"} ) - v-jingzhangCommunity Support
Hi jshedhai
You may try this
= Table.ReplaceValue(#"Changed Type","0#(lf)0","0",Replacer.ReplaceText,{"Data"})Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.