Power Query
Power Query
Power Query
Power Query
published
Introduction
Accessing Data
Action
Binary
Binary Formats
Combiner
Comparer
Cube
Date
Date Time
Date Time Zone
Diagnostics
Duration
Error
Expression
Function
Lines
List
Logical
Metadata
Number
Record
Replacer
Splitter
Table
Text
Character.FromNumber
Character.ToNumber
Guid.From
Json.FromValue
Text.AfterDelimiter
Text.At
Text.BeforeDelimiter
Text.BetweenDelimiters
Text.Clean
Text.Combine
Text.Contains
Text.End
Text.EndsWith
Text.Format
Text.From
Text.FromBinary
Text.Insert
Text.Length
Text.Lower
Text.Middle
Text.NewGuid
Text.PadEnd
Text.PadStart
Text.PositionOf
Text.PositionOfAny
Text.Proper
Text.Range
Text.Remove
Text.RemoveRange
Text.Repeat
Text.Replace
Text.ReplaceRange
Text.Reverse
Text.Select
Text.Split
Text.SplitAny
Text.Start
Text.StartsWith
Text.ToBinary
Text.ToList
Text.Trim
Text.TrimEnd
Text.TrimStart
Text.Upper
Value.FromText
Time
Type
Uri
Values
Powered by GitBook

Text.Repeat

Text.Repeat

Returns a text value composed of the input text repeated a specified number of times.

function (optional text as nullable any, count as number) as nullable any

Description

Returns a text value composed of the input text text repeated count times.

Category

Text.Transformations

Examples

Repeat the text "a" five times.

Text.Repeat("a", 5)

"aaaaa"

Repeat the text "helloworld" three times.

Text.Repeat("helloworld.", 3)

"helloworld.helloworld.helloworld."

Previous
Text.RemoveRange
Next
Text.Replace
Last updated 2 years ago
Edit on GitHub
Contents
Text.Repeat
Description
Category
Examples