Name property
Field.Name — Text
The name, as assigned in Calcapp Creator.
Field names are normally assigned automatically by Calcapp Creator based on their labels, though a name can be provided manually as well.
Providing names manually makes it possible to find all fields matching a certain naming pattern through properties like Fields of form screens. Below, an example returns all fields whose names start with the text string "Required".
Examples
Returns a comma-separated text string containing the names of all fields of the app.
FILTER(App.Fields, STARTSWITH(App.Fields.Name,
"Required"))FILTER(App,Fields; STARTSWITH(App,Fields,Name;
"Required"))
Returns all fields of the app whose names start with "Required".