Fields property

FormGroup.Fields — { Field }

The fields of this form group as an array.

Accessing all fields of a form group through this property has many uses:

The following sections detail how these scenarios can be realized. Skip to the examples at the bottom for the concise version.

Summing all number fields

This formula returns the sum of the values of all numeric fields, including number fields:

SUM(FormGroup1.Fields)SUM(FormGroup1,Fields)

The formula above can also be written as follows:

SUM(FormGroup1.Fields.Value)SUM(FormGroup1,Fields,Value)

However, as the SUM function is looking for an array of numbers to add together, and number fields return numbers through their Value properties, .Value,Value is inferred and does not need to be spelled out.

In fact, you can make the formula even shorter:

SUM(FormGroup1)SUM(FormGroup1)

In the formula above, .Items.Value,Items,Value is inferred. In other words, the Items property is accessed, which includes not only fields, but also buttons and text boxes. As buttons and text boxes cannot return numbers, they are ignored by the SUM function, meaning that SUM(FormGroup1)SUM(FormGroup1) returns the sum of all items that can return numbers, including number fields.

Summing all fields except date and time fields

The formulas above ask all fields of the form group to return numbers that the SUM function can add together. Fields that cannot do that, such as text fields, are ignored.

However, number fields are not the only fields that can return numbers, that is also true for number drop-down fields and date and time fields.

Adding together the values of number fields and number drop-down fields makes sense, but mixing values of number fields and number drop-down fields with values of date and time fields only makes sense when you want to add days to a date. (The value of a date and time field represents the number of days that have elapsed since December 31, 1899, meaning that 18,264 represents January 1, 1950.)

To process only number fields, use the NumberFields property instead. This formula adds together the values of the number fields of FormGroup1, ignoring date and time fields:

SUM(FormGroup1.NumberFields)SUM(FormGroup1,NumberFields)

To also include the values of number drop-down fields, use this formula:

SUM(FormGroup1.NumberFields, FormGroup1.NumberDropDownFields)SUM(FormGroup1,NumberFields; FormGroup1,NumberDropDownFields)

Summing the other fields of a form group

Let's say that the form group FormGroup1 consists of ten fields, Field1 through Field10. If Field10 should contain the sum of the other fields, it is tempting to try to associate this formula with the Value property of Field10:

SUM(FormGroup1.Fields)SUM(FormGroup1,Fields)

However, that formula will not work. Instead, you'll get an error message, because you're effectively asking that the calculated value of Field10 includes the value of Field10 itself.

This is similar to trying to use the formula Field1 * 2Field1 * 2 for the Value property of Field1, effectively asking that the value of Field1 should be set to the value of Field1, multiplied by two. This is known as a circular calculation, and results in an error message.

In order to solve this issue, the formula needs to reference the fields to include in the calculation explicitly:

SUM(Field1:Field9)SUM(Field1:Field9)

Above, Field1:Field9Field1:Field9 creates an array consisting of Field1, Field9 and all items that appear between them. Notably, Field10 is not part of the array.

Enabling a button only if all fields are valid

The Enabled property of a button determines if users can interact with the button. If a button should only be enabled if all fields of FormGroup1 are considered valid, associate this formula with the Enabled property of the button:

AND(FormGroup1.Fields.Valid)AND(FormGroup1,Fields,Valid)

Above, the FormGroup1.Fields.ValidFormGroup1,Fields,Valid formula returns an array of logical values (TRUE or FALSE), where TRUE indicates that a field is valid and FALSE indicates that a field is invalid. The AND function, when applied to this array, returns TRUE only if all array elements are TRUE. In effect, the button is only enabled if all fields of the form group are valid.

Making the background color red if a field is invalid

The BackgroundColor property determines the background color of a screen and all screens that follow that have no explicit background color set. That means that if the background color is set for the first screen of an app, and no other screens have a background color set, the first screen determines the background color of the entire app.

We can make use of this knowledge to make the background of the entire app red, but only if at least one field of the form group FormGroup1 is invalid. This formula is associated with the BackgroundColor property of the first screen:

IF(OR(NOT(FormGroup1.Fields.Valid)), Color.Red)IF(OR(NOT(FormGroup1,Fields,Valid)); Color,Red)

The formula fragment FormGroup1.Fields.ValidFormGroup1,Fields,Valid returns a logical array, where TRUE indicates that the corresponding field is valid and FALSE indicates that the corresponding field is invalid. Applying the NOT function to this array negates every element, meaning that TRUE indicates that a field is invalid and FALSE indicates that a field is valid. (The ! operator would have had the same effect.)

Then, the OR function is applied to this array. It returns FALSE only if all elements of the array are FALSE. In other words, it returns TRUE if one or several elements are TRUE, meaning that it returns TRUE if one or several fields are invalid.

Finally, the IF function is used to return the color red if one or several fields are invalid. Otherwise, IF returns a blank value, which has no effect on the background color. The net effect is that the background color of the app is made red if one or several fields of FormGroup1 are invalid.

Including all field values of a form group in an email

The Body property of email report buttons allows the body of an email to be set through a formula. While email report buttons have built-in support for including field values, through the IncludedFields property, building a text string manually to include in the email body allows us more flexibility.

Consider this formula, which should be associated with the Body property of an email report button:

TEXTJOIN(NEWLINE(), FALSE, FormGroup1.Fields.Label & ": " & FormGroup1.Fields.Value)TEXTJOIN(NEWLINE(); FALSE; FormGroup1,Fields,Label & ": " & FormGroup1,Fields,Value)

Above, the formula fragment FormGroup1.Fields.LabelFormGroup1,Fields,Label returns a text array, made up of the labels of the fields of FormGroup1. The formula fragment FormGroup1.Fields.ValueFormGroup1,Fields,Value also returns an array, this time made up of the values of the fields. Using &, the labels are joined together with the values, separated by a colon.

The resulting text array, where every element consists of a label, followed by a colon and a value, is converted into a single text string using the TEXTJOIN function. Its first parameter, NEWLINE()NEWLINE(), ensures that the array elements are separated from one another using line breaks.

Requiring all fields of a form group to be filled out

The NextScreenAvailable property of form screens determines if users are allowed to move forward to the next screen. If a user should only be allowed to move forward once all fields of a form group have been filled out, associate this formula with the NextScreenAvailable property of the screen that the form group is part of:

AND(ISDEFINED(FormGroup1.Fields))AND(ISDEFINED(FormGroup1,Fields))

The ISDEFINED function returns a logical array when its sole parameter is an array. TRUE elements in the array indicate that the corresponding fields have defined values, that is, have been filled out, and FALSE elements indicate that the corresponding fields have not been filled out.

Finally, the AND function returns TRUE only if all elements of the array are TRUE, otherwise it returns FALSE. The net effect is that AND returns TRUE only if all fields of FormGroup1 have been filled out, prompting the NextScreenAvailable property to only allow users to proceed once all fields have defined values.

Requiring all switch fields to be toggled "on"

The Visible property of a form group determines if it is visible to the user. If a form group should only become visible once all switch fields of FormGroup2 have been toggled to their "on" positions, associate this formula with the Visible property of a different form group:

AND(FormGroup2.Fields)AND(FormGroup2,Fields)

The AND function is looking to process logical values, a request that the switch fields of FormGroup satisfy by returning their values. In other words, this formula is equivalent:

AND(FormGroup2.Fields.Value)AND(FormGroup2,Fields,Value)

The formula above won't work if there are fields in the form group which use values which are not logical, such as number fields. To solve this issue, you can refer explicitly to switch fields using the SwitchFields property:

AND(FormGroup2.SwitchFields.Value)AND(FormGroup2,SwitchFields,Value)

When the formulas above are associated with the Visible property of another form group, the net effect is that the form group is only made visible once all switch fields have been toggled to their "on" positions.

Ranges versus this property

If the form group FormGroup1 only consists of the fields Field1, Field2 and Field3, these formulas are equivalent:

FormGroup1.FieldsFormGroup1,Fields
Field1:Field3Field1:Field3
{ Field1, Field2, Field3 }{ Field1; Field2; Field3 }

The second formula uses a range to create an array consisting of Field1, Field3 and all items that appear between them, which in this case is only Field2.

The chief advantage of the Fields property, compared to a range, is that there is no need to update formulas when additional fields are added to a form group. If Field4 were to be added to the form group, the Field1:Field3Field1:Field3 range would have to be changed to Field1:Field4Field1:Field4 everywhere it is used.

By contrast, FormGroup1.FieldsFormGroup1,Fields automatically includes Field4, and any other fields that are added.

Filtering fields

If you want to process only a subset of the fields returned from this property, use the FILTER function. It can base its decision on which fields to return on the property values of the fields.

This formula only returns visible fields:

FILTER(FormGroup1.Fields, FormGroup1.Fields.Visible)FILTER(FormGroup1,Fields; FormGroup1,Fields,Visible)

Crucially, you can also filter on the names of the fields, using standard text functions. This formula only returns fields whose names include the text string "Required":

FILTER(FormGroup1.Fields, CONTAINS(FormGroup1.Fields.Name, "Required"))FILTER(FormGroup1,Fields; CONTAINS(FormGroup1,Fields,Name; "Required"))

If you use a deliberate naming strategy for your fields, you can use FILTER in conjunction with this property to ensure that you only process a specific subset of fields.

Related properties

Use the Fields property of a screen to access all fields of said screen and the Fields property of the app object to access all fields of the entire app.

The Items property returns not only fields, but also buttons and text boxes. From the point of view of the Items property, the Fields property returns only certain items, those that are fields. Use NumberFields, TextFields, SwitchFields, DateTimeFields, NumberDropDownFields and TextDropDownFields to only access certain fields.

Examples

SUM(FormGroup1.Fields)SUM(FormGroup1,Fields)

Returns the sum of the values of all number fields, number drop-down fields and date and time fields that belong to FormGroup1.

SUM(FormGroup1.NumberFields)SUM(FormGroup1,NumberFields)

Returns the sum of the values of all number fields that belong to FormGroup1.

SUM(FormGroup1.NumberFields.Value)SUM(FormGroup1,NumberFields,Value)

Returns the sum of the values of all number fields that belong to FormGroup1. If .Value,Value is left out, it is inferred.

SUM(FormGroup1.NumberFields, FormGroup1.NumberDropDownFields)SUM(FormGroup1,NumberFields; FormGroup1,NumberDropDownFields)

Returns the sum of the values of all number fields and number drop-down fields that belong to FormGroup1.

AND(FormGroup1.Fields.Valid)AND(FormGroup1,Fields,Valid)

Returns TRUE if all fields of FormGroup1 are valid and FALSE otherwise. FormGroup1.Fields.ValidFormGroup1,Fields,Valid returns a logical array, where each element reflects whether its corresponding field is valid. Finally, the AND function returns TRUE if all elements are TRUE and FALSE otherwise.

TEXTJOIN(NEWLINE(), FALSE, FormGroup1.Fields.Value)TEXTJOIN(NEWLINE(); FALSE; FormGroup1,Fields,Value)

Returns all field values of a form group as a text string, where values are separated from one another using line breaks. The formula fragment FormGroup1.Fields.ValueFormGroup1,Fields,Value returns an array of values, which the TEXTJOIN function joins together with line breaks.

AND(ISDEFINED(FormGroup1.Fields))AND(ISDEFINED(FormGroup1,Fields))

Returns TRUE if all fields of FormGroup1 have been filled out. When the ISDEFINED function is applied to an array of fields, it returns a logical array whose elements indicate if the corresponding field has a defined value. The AND function returns TRUE if all array elements are TRUE and FALSE otherwise.

AND(FormGroup2.SwitchFields.Value)AND(FormGroup2,SwitchFields,Value)

Returns TRUE if all switch fields of FormGroup1 have been toggled to their "on" positions. FormGroup2.SwitchFields.ValueFormGroup2,SwitchFields,Value returns a logical array containing the values of all switch fields. The AND functions returns TRUE if all array elements are TRUE and FALSE otherwise.