Display message when value increases

What I want is that every time a value increases, a message is displayed. for example … the base value is <2> if it increases to <3> a message is displayed but if it decreases, nothing happens.

Hi there, @atsouisaac03… if I understand your post correctly, one way to do what you described is to use a database trigger (which is a backend workflow) to “watch” the field in question and show a message if the field’s value before a change is less than the field’s value after the change (i.e., now). For example, if I had a field called points on the User data type, a database trigger to display a message when a user’s points value increases would look like this.

Then, add an action in the trigger to display the message (whatever that means in your app), and you should be good to go.

Hope this helps.

Best…
Mike

1 Like

tank you

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.