- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Remove leading zero's from a string
Hey guys,
the situation is as follows: I have a set of values (string-type) that can either contain a number or the value 'AFW' (i.e.: unknown data). However, some numbers have leading zero's at the front (example: 0043526). I'd like to have those leading zero's removed, but still want the data-type to be a string considering I also still have the 'AFW'-values.
Test-table, original situation:
Test-table, desired situation:
Does anyone know any methods on how to get this done without modifying the original dataset (I only got this data exported into PowerBI Desktop, so I cannot edit this in Excel e.g.)?
Thanks,
~ Niels
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You could try something like this. This code will first check if the string can be converted into a number - if it can't then it will just return the string else it will convert the string to a number (removing leading zero's) and then turn the number back into a string.
NumberXNoLeadingZero = IF( ISERROR( VALUE( 'Table'[NumberX] ) ), 'Table'[NumberX], CONCATENATE( VALUE('Table'[NumberX]), "" ) )

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In the powerQuery Editor
Add Column -> Custom Column
= try Number.From([NumberX]) otherwise [NumberX]
Note : NumberX is name of the text type column which has leading zeros.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You could try something like this. This code will first check if the string can be converted into a number - if it can't then it will just return the string else it will convert the string to a number (removing leading zero's) and then turn the number back into a string.
NumberXNoLeadingZero = IF( ISERROR( VALUE( 'Table'[NumberX] ) ), 'Table'[NumberX], CONCATENATE( VALUE('Table'[NumberX]), "" ) )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Sdjensen,
I have a similar issue to the one posted, but it has to do with removing leading zeros from each octet of an IP address. For example, I am getting IP address information int the following format:
062.045.162.150
and I need to convert it to:
62.45.162.150
How can I modify your example to get the result desired?
Thank you,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Anonymous,
I am sorry, but I haven't seen your question until now - did you solve it?
I the Query Editor I would use the Split by delimiter '.' into 4 columns and then for each column remote the leeding 0's and then Concatenate the 4 columns back into one column.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
@sdjensen HELP PLEASE... Do you just add this to the Query Editor? I can't get it to work.
Thanks,
M
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@mo9k8 - It is a DAX formula, so you have to add it as a calculation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
Anonymous
| 09-07-2017 05:04 AM | ||
03-14-2016 11:59 AM | |||
03-30-2021 11:36 PM | |||
10-09-2024 03:26 AM | |||
09-27-2023 03:58 AM |
User | Count |
---|---|
141 | |
112 | |
83 | |
63 | |
47 |