How to get more data after using Select?

Hi all.

Noobie question.

Video: Database Integration - Saving data in the database - YouTube

Consider the solution as shown in the help video where you are creating a new address, and you select the Neighbourhood from the drop down list.

How would I use the Selection in the drop down list to pull back other values from the table linked by relationship and show them in a separate text box?

For example, if I select Manhattan, and the Neighbourhood table also had another column called “Population” with a value for Manhatten. How would I pull that Population value into a text box after selection of Manhatten?

I don’t need to store it, I just want to see the value.

Thanks.
Chris.

Hello @Chris_White1

How would I use the Selection in the drop down list to pull back other values from the table linked by relationship and show them in a separate text box?

If the selected item has the population value you can just use data-binding to display the value

But, make sure these data-bindings placed in the same DataModel

Regards, Vlad

Thanks very much!