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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Riddim
Frequent Visitor

power query m converts text to numeric but loses the 0 at the beginning of the number

Hi,

power query m converts text to numeric but loses the 0 at the beginning of the number.

For example:

0012 becomes 12

0123 becomes 123

 

try Number.FromText(text as text) as number

or

try Text.From( Number.FromText(text_column_number) in a new column doesn't work.

 

i need to keep the 0.

I haven't found a topic for this case.

Can you help me?

2 ACCEPTED SOLUTIONS
Vijay_A_Verma
Super User
Super User

If you need to keep leading 0s, then you will need to retain the number as text only. Number format will not be able to show leading 0s. In Excel, you can format numbers with leading 0s but here there is no column formatting available on number columns to retain leading 0s. 

View solution in original post

v-junyant-msft
Community Support
Community Support

Hi @Riddim ,

@Vijay_A_Verma Thank you for your replying! This indeed can't be achieved in Power Query, but it can be achieved in table view:
In Model view, choose the data column:

vjunyantmsft_0-1710988251941.png

vjunyantmsft_1-1710988268333.png

Then set it as below:

vjunyantmsft_2-1710988287797.png

The final output is as below:

vjunyantmsft_3-1710988302290.png


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

View solution in original post

5 REPLIES 5
v-junyant-msft
Community Support
Community Support

Hi @Riddim ,

@Vijay_A_Verma Thank you for your replying! This indeed can't be achieved in Power Query, but it can be achieved in table view:
In Model view, choose the data column:

vjunyantmsft_0-1710988251941.png

vjunyantmsft_1-1710988268333.png

Then set it as below:

vjunyantmsft_2-1710988287797.png

The final output is as below:

vjunyantmsft_3-1710988302290.png


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

Thanks a lot

Vijay_A_Verma
Super User
Super User

If you need to keep leading 0s, then you will need to retain the number as text only. Number format will not be able to show leading 0s. In Excel, you can format numbers with leading 0s but here there is no column formatting available on number columns to retain leading 0s. 

bhanu_gautam
Super User
Super User

@Riddim , Try using below method

 

try Text.PadStart(Number.FromText([TextColumn]), Text.Length([TextColumn]), "0")





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

Proud to be a Super User!




It didn't work. it failed to convert text to a number(it offers hasError and noHasError)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors