a!recordFilterChoices() Function

Creates choices of a user filter for an expression-backed record.

This function is used within a Record Type Object to define choices of a user filter for an expression-backed record.

Syntax

a!recordFilterChoices( choiceLabels, choiceValues)

  • choiceLabels (List of Text String): The list of text to be displayed to the user as the filter choices.
  • choiceValues (List of Variant): The list of values associated with the available choices.

Notes

  • Since users can save default selections for user filters, try to use expressions that rarely change the choices available. If users save a choice that is not available the next time they load the record, their saved filter selections will be cleared and a warning message will display.

Example

1
2
3
4
=a!recordFilterChoices(
  choiceLabels: {"Active", "Inactive"},
  choiceValues: {1, 0}
)
Open in Github Built: Thu, Feb 23, 2023 (02:59:22 PM)

On This Page

FEEDBACK