-
Is it possible to auto populate/display/update a value of a field based on the contents of another when they share the same row in a table? For example, say I enter in my name into a name field and then the email field below automatically populates/displays my email from a table where both values are stores. EDIT: I can get a Headline field to auto populate to the same value as selected in an Option Picker on the screen using something like: {{ Form.Fields.Option }} or similar. However, I'd like it to be the email associated with the user, not the user. And instead of an Option Picker and Header, it'd be useful to be able to type any string into one field and then have it populate another. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 17 replies
-
Hi @nunick you can use the My binding in this image is So, when I complete the |
Beta Was this translation helpful? Give feedback.
-
Using the default value is the old approach. Default values only apply on load of the screen. If you want to update one field with the value of another, look at the On Change event in combination with the Update Field Value action |
Beta Was this translation helpful? Give feedback.
Using the default value is the old approach. Default values only apply on load of the screen.
If you want to update one field with the value of another, look at the On Change event in combination with the Update Field Value action