Help

Fill the form with the data from another table

Topic Labels: Views
Solved
Jump to Solution
1227 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Mariusz_S
7 - App Architect
7 - App Architect

I have created a new empty table with a form view.
I want the user to be able to select records in the form, that are pulled from a different table with two columns (make & model, years)

Screenshot 2020-08-15 at 15.38.40

Not sure how to achieve this.
Every time I create a linked record it just pulls the make and model of the car. Not the years.

1 Solution

Accepted Solutions
Justin_Barrett
18 - Pluto
18 - Pluto

Welcome to the community, @Mariusz_S! :grinning_face_with_big_eyes: One principle of database design that’s good to follow is that of making the data in the primary field (the first field of any table) unique. Internally, Airtable technically does this for you by creating a unique record ID for each record. However, it’s still a good practice to do this yourself to avoid possible confusion as you’re working with your data.

In this case, I suggest moving the make and model into to a new field (I’ll call it {Make and Model} for now), then turning the primary field into a formula that combines the make and model with the years. Something like this:

{Make and Model} & " - " & Years

That will put everything into the primary field, it will be unique, and also easier to interpret as people are choosing linked records from the form.

See Solution in Thread

1 Reply 1
Justin_Barrett
18 - Pluto
18 - Pluto

Welcome to the community, @Mariusz_S! :grinning_face_with_big_eyes: One principle of database design that’s good to follow is that of making the data in the primary field (the first field of any table) unique. Internally, Airtable technically does this for you by creating a unique record ID for each record. However, it’s still a good practice to do this yourself to avoid possible confusion as you’re working with your data.

In this case, I suggest moving the make and model into to a new field (I’ll call it {Make and Model} for now), then turning the primary field into a formula that combines the make and model with the years. Something like this:

{Make and Model} & " - " & Years

That will put everything into the primary field, it will be unique, and also easier to interpret as people are choosing linked records from the form.