May 29, 2018 10:42 AM
I’m creating some forms and would like to be able to have the ‘Client’ field as a drop down so that the client name can be selected instead of typed in to avoid any errors. Is it possible to do that?
May 29, 2018 10:56 AM
How many Client
s do you want to have in the list?
If it’s only a few and they are relatively static, add them to a “Single Select” field and show the “Single Select” field in the form. Then the user must choose one of the options from the “Single Select” field.
If there are many, and you frequently add new ones, make a new table for all your Clients
. Then in whatever table you have your form in, create a “Linked Records” field that links to “Clients”, and show that “Linked Records” field in your form. Your users will see a searchable list of all the entries in your Clients
table (they won’t be able to see any other data in that table, only the “Name”, or whatever else you title the Primary Field).
May 29, 2018 11:40 AM
Got it, thanks!
It’ll be a number of clients, but also I’d be looking to add a few lookup fields so I basically need to plan this properly :slightly_smiling_face:
May 21, 2019 07:14 AM
This was such a revealing post, I felt I re-discovered fire once I saw how I could link items between tables :scream: you’ve earned 100000000000000 stars :star2: @Jeremy_Oglesby
May 21, 2019 08:41 AM
Linking records is the key feature of usefulness in Airtable - it’s what makes it a relational database, rather than just a spreadsheet.
You should check out these articles in the documentation:
A linked record field allows you to represent the relationships between related records by creating links between them. This is particularly helpful when you have multiple tables of related items o...