GetRecords() is a formula query function that lets you dynamically search for records using a custom query.
- You can't use this function on its own. Results depend on the other function where it's used.
- Use it within the
GetFieldValues
,SumValues
, orSize
functions, which use a list of records as a parameter
GetRecords() examples
To query the same table | To query a different table | Result | |
Function layout |
|
|
List of records |
Example using hard-coded value |
Returns a list of record IDs where the value of field ID 6 is equal to “In Progress” |
Returns a list of records from the table with alias |
Results depend on the other function where it's used |
Example using field reference |
Returns a list of record IDs where the value of field ID 6 is equal to whatever value populates the |
Returns a list of record IDs from the table with alias |
Results depend on the other function where it's used |