I learned that Bubble’s expression composer works from left to right (this post).
That helped me write an expression with one condition (are you a new user or not), but I don’t know how to use the composer when I have two conditions.
In my app, centers will pay people a certain amount, and it differs per center. For example: Center A will pay $100 for new users and $30 for existing users, and will also throw in $10 bonuses for users > 150 pounds. (Center B might have different #s for each of these).
How in the world would I code this up in the expression composer? Without weight it was easy:
New_user_bonus-existing_user_bonus*has_donated_before+existing_user_bonus
How can I add weight to this thing?