Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a column which says the zip codes of the locations out of which few of them have zip-xxxx for the specific block location. When I tried loading it directly it gave me an error. So, when I tried to change the format of the column to text and extract using extract by delimiter "-", its still giving me errors. It's giving me an error message as "[DataFormat.Error] We couldn't convert to Number".
Solved! Go to Solution.
@Anonymous,
I could not replicate your issue. It is working fine for me. See the code below:
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("JcrBDYAwDEPRXXKmku3Uhc4Sdf81QOH2vvSrIkkpzlUx7eVWymsPTmWnCGAA/D/DQOvGsz+dFw==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [#"Zip Code" = _t]), #"Changed Type" = Table.TransformColumnTypes(Source,{{"Zip Code", type text}}), #"Inserted Text Before Delimiter" = Table.AddColumn(#"Changed Type", "Text Before Delimiter", each Text.BeforeDelimiter([Zip Code], "-"), type text) in #"Inserted Text Before Delimiter"
Not sure the error you ran into, I tried this with some dummy data I made. Have you tried using the split column feature? Try that with using - as a delimiter. Alternatively you can use the extract feature and take the first 5 characters. Let me know if that helps.
@Anonymous,
I could not replicate your issue. It is working fine for me. See the code below:
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("JcrBDYAwDEPRXXKmku3Uhc4Sdf81QOH2vvSrIkkpzlUx7eVWymsPTmWnCGAA/D/DQOvGsz+dFw==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [#"Zip Code" = _t]), #"Changed Type" = Table.TransformColumnTypes(Source,{{"Zip Code", type text}}), #"Inserted Text Before Delimiter" = Table.AddColumn(#"Changed Type", "Text Before Delimiter", each Text.BeforeDelimiter([Zip Code], "-"), type text) in #"Inserted Text Before Delimiter"
Thanks @Anonymous All the time I was transforming the existing column. Your solution of Adding a new column worked
@Anonymous,
Did you try converting the column to text in Power Query (Inside Edit Query) and not in the visual area?
If not try doing it there and then you can also get the extract by delimiter there.
That should fix the issue
I was doing the editing in the power query editor itself. The extract by delimiter is working only with text columns
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
69 | |
55 | |
36 | |
31 |
User | Count |
---|---|
87 | |
62 | |
61 | |
49 | |
45 |