Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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")
User | Count |
---|---|
11 | |
8 | |
5 | |
5 | |
4 |
User | Count |
---|---|
16 | |
14 | |
8 | |
6 | |
6 |