Is there a way to show a custom error message for an invalid column?
Iโm guessing you mean for a data validation error. No. One thing you could do is provide input guidance in the column description. Eg: column name: Price, column description: enter a value between $1 and $99
You can always add a Show column right after the column in question, where you can display a message if the value entered is invalid. I do this several places in my app. Set the value for the content to show, and set ShowIf accordingly. Then use a format rule to display the content in red and bold - never fails to draw peopleโs attention :=)
Thanks for the suggestion.
In the invalid value error message box you can put a nested IF like
IF([value] > 99, โtoo highโ, IF([value] < 1, โtoo smalโ), x) .
The x just satisfies the IF statement and will never be used if your valid_if constraint states that [value] needs to be between 1 and 99. (I never bothered to learn the IFS statement ^^) This post is old so I donโt know what changed in appsheet since then but this way you can have different error messages.
AppSheet added custom error functionality in September 2018:
@Jonathon youโre da man!
@Jonathon thank you for answering so many questions and helping out so many others in the community!
User | Count |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |