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
Anonymous
Not applicable

How to remove leading zeros in text but specially for numbers only

Dear all,

 

I tried to remove leading zeros in my power query by converting the data type from text to whole number. However, i received error for those data which are not really numbers. Therefore, could you please help me out with the solutions.

Data Expected Result
0000000023 23
0000000024 24
0000000025 25
0000000026 26
0000000027 27
0000000028 28
0000000029 29
A123456 A123456
B574785 B574785


Best regards & Many thanks

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

NewStep=Table.AddColumn(PreviousStepName,"Expected Result",each Text.TrimStart(Text.From([Data]),"0"))

View solution in original post

3 REPLIES 3
stageja
New Member

It does not work in direct query

 

wdx223_Daniel
Super User
Super User

NewStep=Table.AddColumn(PreviousStepName,"Expected Result",each Text.TrimStart(Text.From([Data]),"0"))

Since it is already text data, we can use directly

 

each Text.TrimStart([Data], "0")

 

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