Text.PadEnd

Text.PadEnd is a Power Query M function that pads a text value by inserting spaces or a specified character at the end until it reaches a specified length. The function returns the padded text value.

Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365

Syntax

Text.PadEnd(
   text as nullable text,
   count as number,
   optional character as nullable text,
) as nullable text

Description

Returns a text value padded to length count by inserting spaces at the end of the text value text. An optional character character can be used to specify the character used for padding. The default pad character is a space.

Examples

The Text.PadEnd function in Power Query M language allows you to lengthen a string by appending characters to the end. To help you better understand this function, let’s walk through some examples together.

Consider a situation where you need a text string to be a precise length, say, nine characters. If you leave the third argument of the function blank, the function will automatically append spaces to the end of your text string.

Let’s take the word ‘Gorilla’ as an example, which is originally seven characters long. To extend its length to nine characters using Text.PadEnd, we would use:

Text.PadEnd( "Gorilla", 9 ) // Returns "Gorilla  "

As you can see, the function has added two spaces to the end of ‘Gorilla’ to make it nine characters long.

While padding with spaces is an option, you might more commonly find yourself adding trailing zeroes to the end of numerical strings. This comes in handy when you’re working with data like invoice numbers or product codes, where you might need a seven-character string, padded with zeroes at the end if it falls short.

Consider the following examples:

Text.PadEnd( "5440", 7, "0" )  // Returns "5440000"
Text.PadEnd( "544",  7, "0" )  // Returns "5440000"
Text.PadEnd( "54",   7, "0" )  // Returns "5400000" 

Each time, our function appends zeroes to the end of the string until it’s seven characters long.

But don’t limit yourself to just spaces and zeroes! The Text.PadEnd function can extend your string with any character you specify. Let’s say we want to extend the string “Rick” with the “|” character until it’s ten characters long. Here’s how we do it:

Text.PadEnd( "Rick", 10, "|" ) // Returns "Rick||||||"
Text.PadStart to suffix strings with characters in Power Query M

As you can see, with the Text.PadEnd function, you can handle a wide variety of text formatting tasks. Understanding how to use this function will prove helpful in your Power Query data transformations.

Learn more about Text.PadEnd in the following articles:

Other functions related to Text.PadEnd are:

BI Gorilla Youtube Channel

Last update: August 25, 2023 | Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/powerquery-m/text-padend
© 2023 BI Gorilla. All rights reserved. Content derived from Microsoft documentation is property of Microsoft Corp.