Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
Solved! Go to Solution.
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.
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.
ReplacedValue =
Table.ReplaceValue (
AddedCustom,
each
if Text.Contains ( [Data], "#(lf)" )
then [Data]
else false,
each "0",
Replacer.ReplaceText, {"Data"}
)
@jshedhai Right-click the column header and choose Replace Values?
= Table.ReplaceValue(#"Changed Type","0
0","0",Replacer.ReplaceText,{"Data"})
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
27 | |
26 | |
21 | |
12 | |
10 |
User | Count |
---|---|
27 | |
25 | |
22 | |
17 | |
13 |