Power Query
published
Search
⌃K

Type.OpenRecord

Type.OpenRecord

Returns an opened version of the given record type (or the same type, if it is already open).
function (type as type) as type

Description

Returns an opened version of the given record type (or the same type, if it is already opened).

Category

Type

Examples

Create an opened version of type [ A = number].
Type.OpenRecord(type [ A = number])
type [ A = number, ... ]