メインコンテンツまでスキップ

Record.Field

レコード内の指定されたフィールドの値を返します。

Syntax

Record.Field(
record as record,
field as text
) as any

Remarks

record 内の指定された field の値を返します。フィールドが見つからなかった場合は、例外がスローされます。

Examples

Example #1

レコード内のフィールド "CustomerID" の値を調べます。

Record.Field([CustomerID = 1, Name = "Bob", Phone = "123-4567"], "CustomerID")

Result:

1

Category

Record.Selection