Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello everyone.
Sorry, a new with Power BII have a column which a column value like this.
12233445566
14725836914
30104569
this value have LEN 11, and if i have Len Value is 7. i will concatenate this value with "000" ( or we usually call Quotation Marks )
Do you have any suggestions?
Thank you very much
Solved! Go to Solution.
Hi @okikuswanda
You can add a custom column like below.
Text.PadStart( Number.ToText( [id] ), 11, "0" )
[id] - is your column name
Number.ToText() - converts number to text, remove this part if your column is a text data type
Text.PadStart() - Pads text with "0"
Hi @okikuswanda
You can add a custom column like below.
Text.PadStart( Number.ToText( [id] ), 11, "0" )
[id] - is your column name
Number.ToText() - converts number to text, remove this part if your column is a text data type
Text.PadStart() - Pads text with "0"
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 9 | |
| 8 | |
| 7 | |
| 6 |