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.
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
--
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 |
---|---|
15 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
15 | |
13 | |
8 | |
7 | |
6 |