Type.ForRecord

Syntaks

Type.ForRecord(fields as record, open as logical) as type

Om

Returnerer en type, der repræsenterer poster med specifikke typebegrænsninger for felter.

Eksempel 1

Opret dynamisk en tabeltype.

Brug

let
    columnNames = {"Name", "Score"},
    columnTypes = {type text, type number},
    rowColumnTypes = List.Transform(columnTypes, (t) => [Type = t, Optional = false]),
    rowType = Type.ForRecord(Record.FromList(rowColumnTypes, columnNames), false)
in
    #table(type table rowType, {{"Betty", 90.3}, {"Carl", 89.5}})

Output

#table(
    type table [Name = text, Score = number],
    {{"Betty", 90.3}, {"Carl", 89.5}}
)