Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have the following situation:
Product_Code (columnt of text type)
234567
765432
87345
3587
12
1234678
I need to create a new column in power query with a fixed size of 10 chars and the contents above described, but filling the gaps with 0 on the left side of the field, like this:
0000234567
0000765432
0000087345
0000003587
0000000012
0001234678
Does anybody have a tip or direction in how to active it with M language in Power Query? Thanks!
Solved! Go to Solution.
In Power Query, with Text.PadStart( ).
Text.PadStart(Text.From([Product_Code]),10,"0")
I'm going something else too. Give me a second.
Edit -
This works nicely so you don't need to add an additional Custom Column:
= Table.ReplaceValue(Source, each[Product_Code], each Text.PadStart(Text.From([Product_Code]),10,"0"),Replacer.ReplaceValue,{"Product_Code"})
Proud to be a Super User!
In Power Query, with Text.PadStart( ).
Text.PadStart(Text.From([Product_Code]),10,"0")
I'm going something else too. Give me a second.
Edit -
This works nicely so you don't need to add an additional Custom Column:
= Table.ReplaceValue(Source, each[Product_Code], each Text.PadStart(Text.From([Product_Code]),10,"0"),Replacer.ReplaceValue,{"Product_Code"})
Proud to be a Super User!
Thanks @ChrisMendoza and @asad The text pad function works perfect in my case.
As I have some fileds with more than 10 chars I use the following:
if Text.Length([COD_PRODUTO]) < 10 then
Text.PadStart([COD_PRODUTO],10,"0") else
[COD_PRODUTO]
Thank you guys!
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 |
---|---|
81 | |
75 | |
60 | |
37 | |
33 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |