Table.View is a Power Query M function that returns a view of a table where the functions specified in handlers are used in lieu of the default behavior of an operation when the operation is applied to the view. The function returns a view of the table with the specified handlers applied.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
Table.View(
table as nullable table,
handlers as record,
) as table
Description
Returns a view of table
where the functions specified in handlers
are used in lieu of the default behavior of an operation when the operation is applied to the view.
If table
is provided, all handler functions are optional. If table
isn’t provided, the GetType
and GetRows
handler functions are required. If a handler function isn’t specified for an operation, the default behavior of the operation is applied to table
instead (except in the case of GetExpression
).
Handler functions must return a value that is semantically equivalent to the result of applying the operation against table
(or the resulting view in the case of GetExpression
).
If a handler function raises an error, the default behavior of the operation is applied to the view.
Table.View
can be used to implement folding to a data source – the translation of M queries into source-specific queries (for example, to create T-SQL statements from M queries).
Refer to the published Power Query custom connector documentation for a more complete description of Table.View
.
Examples
Create a basic view that doesn’t require accessing the rows in order to determine the type or the row count.
// Output: Table.FromRecords( {[CustomerID = 1, Name = "Bob", Phone = "123-4567"]} )
Table.View(
null,
[
GetType = () => type table [CustomerID = number, Name = text, Phone = nullable text],
GetRows = () => Table.FromRecords( {[CustomerID = 1, Name = "Bob", Phone = "123-4567"]} ),
GetRowCount = () => 1
]
)
Related functions
Other functions related to Table.View are:
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy