Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Power Query : space before text

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

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Found the solution. I leave it for the one who need it. https://www.fourmoo.com/2015/03/25/power-query-adding-leading-zero-to-number-eg-month-number/ Thanks to this blogger.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Found the solution. I leave it for the one who need it. https://www.fourmoo.com/2015/03/25/power-query-adding-leading-zero-to-number-eg-month-number/ Thanks to this blogger.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.