Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
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"})
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 12 | |
| 7 | |
| 5 | |
| 5 | |
| 3 |