Power Query
published
Search
⌃K

Type.ClosedRecord

Type.ClosedRecord

Returns a closed version of the given record type (or the same type, if it is already closed).
function (type as type) as type

Description

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

Category

Type

Examples

Create a closed version of type [ A = number,?].
Type.ClosedRecord(type [ A = number,...])
type [ A = number ]