List.Buffer

 

This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.

Buffers the list in memory. The result of this call is a stable list, which means it will have a determinimic count, and order of items.

List.Buffer(list as list) as list  

ArgumentDescription
listThe List to buffer.
List.Buffer(Sql:Database("localhost","northwind")[Customers]) equals stable copy of table Customers  

Show: