Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have this text column in my table
Label1 (txt) |
12345678 |
NJGTWS21Q99Y651S |
and I want a new column like this:
copy Label1 (txt) |
0000000012345678 |
NJGTFS21P99Y651S |
in excel I could use a function like:
=IF(LEN(a2)<16;(REPT("0";16-LEN(a2))&a2);a2)
How to complete this field to get a fixed length with Power Query / M language?
Thank you in advance!
Solved! Go to Solution.
Thanks @Anonymous I tried your suggestion with Text.PadStart function like this:
Text.PadStart([Label1 (txt)],16,"0") and it works fine!
Grazie 1000!
try using addcolumn with this formula:
Text.PadStart(Text.From([#"Label1 (txt)"]),16,"0")).
incidentally, for the excel version I would have this idea:
TESTO is the italian version of TEXT function RIPETI is for REPEAT and LUNGHEZZA is for LEN.
Thanks @Anonymous I tried your suggestion with Text.PadStart function like this:
Text.PadStart([Label1 (txt)],16,"0") and it works fine!
Grazie 1000!
Ma se il problema è, come mi viene il dubbio sia, la lettura di un codice fiscale come numero anziché testo, conviene piuttosto che affannarsi a cercare un rimedio, prevenire il problema in fase di caricamento dati.
Ad esempio, evitando che power query attui un cambio di tipo automatico sulle colonne che potrebbero sembrargli contenere dei nuemri invece sono testo a tutti gli effetti.
i dati purtroppo sono in questo formato nel csv che mi inviano, più che chiedere ogni volta di cambiare il formato non posso...
grazie e buona giornata
--
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
10 | |
7 | |
6 | |
6 | |
6 |