Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
neil37
Advocate I
Advocate I

Data Validation - PowerQuery

Hello, 

 

I need some assistance in PowerQuery in ensuring there are 8 digits following a hyphen (i.e., 2022-########). The data comes in as 2022-2345; 2022-354; 2022-875437, etc. I need it to be reformatted to: 2022-00002345; 2022-00000354; 2022-0875437. 

 

Essentially, I just need to add zeros on the front end of the data (after the hyphen) to ensure the data matches another source for proper modeling relationships. 

 

ActualDesired
2022-48762022-00004876
2022-4647592022-00464759
2022-1232022-00000123

 

 

Thank you!

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @neil37 ,

 

I made a pbix file myself, which you can download and view later from the attachment.

Here're the steps in detail.

1.Duplicate Actual column.

vstephenmsft_0-1665558992397.png

vstephenmsft_1-1665559015545.png

 

2.Split the duplicated column with "-".

vstephenmsft_2-1665559043979.pngvstephenmsft_3-1665559051815.pngvstephenmsft_4-1665559059836.png

 

3.Change the types of the splited columns as text.

vstephenmsft_5-1665559105707.png

 

4.Add a custom column so that the number on the right half is added to 0 and combined with the number on the left half by "-".

vstephenmsft_6-1665559189603.pngvstephenmsft_7-1665559198578.png

 

5.After the unneeded columns are removed, the result is as follows.

vstephenmsft_8-1665559253718.png

 

Hopefully, the detailed steps above and the accessories will help you.

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @neil37,

 

Did @jgordon11 's reply help you? Just create a blank query and then put the codes into Advanced editor.

If it did, please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

Best Regards,

Stephen Tao

 

Hi @jgordon11  & @Anonymous , 

 

I imagine the code would work if I was starting from a blank query not connected to a specific source already? This specific task is for a source that is ingested already via an active query.  I am a bit new to this language and do not see how I add this to an active query from advanced editor (i.e., which source goes where, where column names go)

Anonymous
Not applicable

Hi @neil37 ,

 

I made a pbix file myself, which you can download and view later from the attachment.

Here're the steps in detail.

1.Duplicate Actual column.

vstephenmsft_0-1665558992397.png

vstephenmsft_1-1665559015545.png

 

2.Split the duplicated column with "-".

vstephenmsft_2-1665559043979.pngvstephenmsft_3-1665559051815.pngvstephenmsft_4-1665559059836.png

 

3.Change the types of the splited columns as text.

vstephenmsft_5-1665559105707.png

 

4.Add a custom column so that the number on the right half is added to 0 and combined with the number on the left half by "-".

vstephenmsft_6-1665559189603.pngvstephenmsft_7-1665559198578.png

 

5.After the unneeded columns are removed, the result is as follows.

vstephenmsft_8-1665559253718.png

 

Hopefully, the detailed steps above and the accessories will help you.

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

Thank you, Stephen.  Changing the format from whole number to text was my issue after splitting via delimeter. Greatly appreciated. 

jgordon11
Resolver II
Resolver II

let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText(
"i45WMjIwMtI1NDJWitVBcExQeaZm5hZKsbEA", BinaryEncoding.Base64), Compression.Deflate))),
tbl = Table.TransformColumns(Source, {{"Column1", each let ts = Text.Split(_,"-") in ts{0} & "-" & Text.PadStart(ts{1}, 8, "0")}})
in
tbl

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors