Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
NewStep=Table.AddColumn(PreviousStepName,"Expected Result",each Text.TrimStart(Text.From([Data]),"0"))
It does not work in direct query
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")
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.