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"))
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")
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
135 | |
20 | |
20 | |
14 | |
13 |
User | Count |
---|---|
158 | |
33 | |
32 | |
23 | |
18 |