Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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"})
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.