Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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"})
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
8 | |
6 | |
6 | |
5 | |
5 |
User | Count |
---|---|
9 | |
9 | |
8 | |
6 | |
6 |