إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
Syntax
Record.FieldOrDefault(
record as nullable record,
field as text,
optional defaultValue as any
) as any
About
Returns the value of the specified field field in the record record. If the field is not found, the optional defaultValue is returned.
Example 1
Find the value of field "Phone" in the record, or return null if it doesn't exist.
Usage
Record.FieldOrDefault([CustomerID = 1, Name = "Bob"], "Phone")
Output
null
Example 2
Find the value of field "Phone" in the record, or return the default if it doesn't exist.
Usage
Record.FieldOrDefault([CustomerID = 1, Name = "Bob"], "Phone", "123-4567")
Output
"123-4567"