GetFieldValues() is a formula query function that you can use get values from a specific field of the records referenced in the GetRecord
, GetRecordByUniqueField()
, or GetRecords
function.
GetFieldValues() examples
To query the same table | To query a different table | Result | |
---|---|---|---|
Function layout |
|
|
List of field values Values display like multi-select fields in the table |
Example using hard-coded value |
Returns the value of the field with field ID 3 in records where field ID 6 is equal to “In Progress” (Field id 3 is the |
Returns the value of field 3 in records where field ID 6 is equal to “In Progress”. In this case, field 3, field 6 and the records are from the table with table alias (Field ID 3 is the |
Field values: 2, 3 |
|
Returns the value of the field with field id 5 in the record with record id 101 |
Returns the value of the field with field ID 5 in the record with record ID 101 from the table with alias |
Field value: Med |
|
Returns the value of the field with field id 13 in the record where the value of field id 6 is 1001 |
Returns the value of the field with field ID 13 in the record where the value of field ID 6 is 1001. In this case, field 6 and field 13 are from the table with table alias |
Field value: Michele Cherise |
Example using field reference |
Returns the value of the field with field ID 10 in records where field ID 6 is equal to the |
Returns the value of the field with field ID 10 in records where field ID 6 is equal to the In this case, field 10, field 6 and the records are all from the table with table alias |
Field values: Annual conference, Market analysis |
Returns the value of field ID 8 from the record where the field |
Returns the value of field ID 8 from the record where the field In this case, field ID 8 and the records are on the table assigned table alias |
Field value: (538)669-2868 |
|
Returns the value of the field with field ID 13 where the value in the field
|
Returns the value of the field with field ID 13 where the value in the field In this case, field 6 and field 13 are from the table with table alias |
Field value: Michele Cherise |