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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
Here is my plain issue :
i've got a 2 column dataset
Lib Nb_Pad
Pad1 1
Pad2 2
Pad10 10
Pad5 5
I've seen that using the formula Text.PadStart
it was possible to do something like this :
Pad_Lib
Pad1
Pad2
Pad10
Pad5
The thing is i'm not good enough to set that up in M. -:)
I think of something like :
-------- M -------
let
Source = Excel.Workbook(File.Contents("MyPath\Myfile.xlsx"), null, true),
Order_Sheet = Source{[Item="Order",Kind="Sheet"]}[Data],
Promote = Table.PromoteHeaders(Order_Sheet, [PromoteAllScalars=true]),
// insert a step here that will do the pading trick !!
Pad = Table.TransformColumns(Promote, {{"Lib", each Text.Padstart("Lib", "Nb_Pad"), type text}})
in
Pad
-------------
Thanks for your help !
Stephane
Solved! Go to Solution.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 91 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |