Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Jorr13
Frequent Visitor

How would I replace individual zeros in Power Query Editor but not if a number included a zero

How would I replace individual zeros with blanks but leave zeros if it was contained within say a phone number?

 

Want to replace 0 with nothing/blank but when I use the repalce values function in power Query Editor, where a number set includes a 0, I do not want it to remove the zero.

 

If I used the funtion on say 3204920938 it would change to 32492938. I would want it to stay the same in this case but only make the field blank if it was "0".

1 ACCEPTED SOLUTION

@Jorr13,

 

Try this Power Query step:

 

ReplaceText = Table.ReplaceValue(
    Source,
    each if [Column1] = "0" then null else "0",
    each if [Column1] = "0" then [Column1] else "",
    Replacer.ReplaceText,
    {"Column1"}
  )




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Jorr13 , 

Please refer to my pbix file to see if it helps you.

= Table.ReplaceValue(Source,"0","",Replacer.ReplaceValue,{"Column1"})

vpollymsft_0-1649918864014.png

If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

DataInsights
Super User
Super User

@Jorr13,

 

In Power Query, create a custom column using this if statement. This assumes [Column1] is a text data type.

 

if [Column1] <> "0" then Text.Replace([Column1], "0", "") else [Column1]

 

DataInsights_0-1649775701580.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thanks @DataInsights Do you know if there is a way to do the replacement without creating a new column?

@Jorr13,

 

Try this Power Query step:

 

ReplaceText = Table.ReplaceValue(
    Source,
    each if [Column1] = "0" then null else "0",
    each if [Column1] = "0" then [Column1] else "",
    Replacer.ReplaceText,
    {"Column1"}
  )




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.