본문으로 건너뛰기

Record.Field

레코드에 있는 지정된 필드의 값을 반환합니다.

Syntax

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

Remarks

field에 있는 지정된 record의 값을 반환합니다. 필드를 찾을 수 없으면 오류가 발생합니다.

Examples

Example #1

레코드에 있는 필드 "CustomerID"의 값을 확인합니다.

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

Result:

1

Category

Record.Selection