A co-worker has created an interface with two inputs, one for a phone number and one for an email address.
There is a validation on this interface:
What must the user fill out on the form?
A co-worker has created an interface with two inputs, one for a phone number and one for an email address.
There is a validation on this interface:
What must the user fill out on the form?
The user must fill out either their phone number or email address. The provided code uses an 'and' function to check if both the phone number and email are null. If both are null, a validation message is triggered, which means at least one of the fields must be filled out to avoid the validation message.
From the Appian Expression editor: and(value) Returns true if all inputs are true; returns false if at least one input is false. Returns: Boolean value (Boolean): A value or array of values that must be true for the function to return true. So, correct answer is A
Correct answer is A