Table.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 a table into memory, isolating it from external changes during evaluation.

Table.Buffer(table as table) as table  

ArgumentDescription
tableThe Table to buffer.
  • Table.Buffer is similar to List.Buffer but requires a table as input.
Table.Buffer(Sql.Database("localhost", "Northwind")[Customers]) equals Buffered copy of the Customers table  

Show: