Enabled property

EmailReportButton.Enabled — Logical

Represents whether a button is enabled. Disabled buttons appear grayed-out and cannot be interacted with.

Associate a formula with this property to determine if users should be allowed to interact with a button based on information they have entered in the app, based on their email address or based on the tags you have assigned to them. In particular, use this property to ensure that users have filled out all required fields before being allowed to interact with the button.

Use the Visible property instead to determine if a button is visible.

If this property is not set, it returns FALSE.

Examples

TermsAcceptanceTermsAcceptance

Makes a button enabled only if the user has accepted the terms and conditions, specifically if the switch field TermsAcceptance has been toggled to its "on" position.

ISODD(Field1) && (Field2 < 3)ISODD(Field1) && (Field2 < 3)

Makes a button enabled only if Field1.ValueField1,Value is odd and Field2.ValueField2,Value is less than 3.

Field1.ValidField1,Valid

Makes a button enabled only if Field1 is considered valid.

AND((Field1:Field5).Valid)AND((Field1:Field5),Valid)

Makes a button enabled only if all fields of the Field1:Field5Field1:Field5 range are valid (as determined by the Valid property of the fields). This range includes the two fields Field1 and Field5 and all fields that appear between them.

The formula (Field1:Field5).Valid(Field1:Field5),Valid returns a logical array with the same number of elements as there are fields in the Field1:Field5Field1:Field5 range, like this array: { TRUE, FALSE, TRUE, TRUE, FALSE }{ TRUE; FALSE; TRUE; TRUE; FALSE }. The AND function returns TRUE only if all elements of the array are TRUE.

AND(ISDEFINED(Field1:Field5))AND(ISDEFINED(Field1:Field5))

Makes a button enabled only if all fields of the Field1:Field5Field1:Field5 range are filled out (that is, have values which are not blank). This range includes the two fields Field1 and Field5 and all fields that appear between them.

The formula ISDEFINED(Field1:Field5)ISDEFINED(Field1:Field5) returns a logical array with the same number of elements as there are fields in the Field1:Field5Field1:Field5 range, like this array: { TRUE, FALSE, TRUE, TRUE, FALSE }{ TRUE; FALSE; TRUE; TRUE; FALSE }. The AND function returns TRUE only if all elements of the array are TRUE.

ENDSWITH(App.UserEmailAddress, "@example.com")ENDSWITH(App,UserEmailAddress; "@example.com")

Makes a button enabled only if the signed-in user has an email address that ends with "example.com". (To enable users to sign in, make your app private.)

USERHASTAG("Employee")USERHASTAG("Employee")

Makes a button enabled only if the signed-in user is associated with the tag "Employee". (To enable users to sign in, make your app private.)