This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I have the table below and if the UPRN has a 10 digit number I want a Zero adding to the end of the number so all the UPRN's have 11
@macmy034 @Bryn-MH @tamerj1 @danextian
https://learn.microsoft.com/en-us/powerquery-m/text-padend
You can use a find-and-replace or a custom column to utilise
Text.PadEnd([UPRN], 10, "0")
The below code changes it to a string and adds "0"s as doing it with Int seems to cause issues.
Code Example
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQyNjE1M7ewVIrViVYyMjM1sTAxt4BwDE3NwAygGqAwUEUsAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [UPRN = _t]),
#"Changed Type1" = Table.TransformColumnTypes(Source,{{"UPRN", type text}}),
#"Replaced Value" = Table.ReplaceValue(#"Changed Type1",each [UPRN],each Text.PadEnd([UPRN],10,"0"),Replacer.ReplaceValue,{"UPRN"}),
#"Changed Type" = Table.TransformColumnTypes(#"Replaced Value",{{"UPRN", Int64.Type}})
in
#"Changed Type"
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 25 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |