Training
Module
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Text.PadEnd(text as nullable text, count as number, optional character as nullable text) as nullable text
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.
Pad the end of a text value so it is 10 characters long.
Usage
Text.PadEnd("Name", 10)
Output
"Name "
Pad the end of a text value with "|" so it is 10 characters long.
Usage
Text.PadEnd("Name", 10, "|")
Output
"Name||||||"
Training
Module
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.