Table.Repeat Function in Power Query

The Table.Repeat function returns a table containing the rows of the given table repeated the specified number of times.

Syntax

Table.Repeat(table as table, count as number) as table

Example: Repeat the rows in the table two times.

Power Query M

let
  MyTable = Table.FromRecords(
    {
      [CustomerID = 1, Name = "Ashish", Phone = "123-4567"], 
      [CustomerID = 2, Name = "Katrina", Phone = "987-6543"], 
      [CustomerID = 3, Name = "Alia", Phone = "543-7890"], 
      [CustomerID = 4, Name = "Vicky", Phone = "676-8479"], 
      [CustomerID = 5, Name = "Mohini", Phone = "574-8864"], 
      [CustomerID = 6, Name = "Meenakshi", Phone = "574-8864"], 
      [CustomerID = 7, Name = "Esha", Phone = "574-8864"], 
      [CustomerID = 8, Name = "Anjali", Phone = "574-8864"]
    }
  ),
    RepeatRows = Table.Repeat(MyTable,2)
in
    RepeatRows 

The output of the above formula is shown below:

Table.Repeat function in Power Query