Slow Motion:
I would now like the fields to do predictive lookup of a previously entered name so I don’t have to type it in all the time in full.
I would suggest you use a COMBO BOX or maybe a LIST BOX in your FORM to do what you need. Both tools allow ‘predictive lookup’ (i.e. typing the first few letters to get to the desired item or region of your list).
There are important functional differences between these two tools however, so you should study the tutorials first to see which one is appropriate for you. Generally, selection from a COMBO BOX writes the value of the selected item into the appropriate field of your table, while selection from a LIST BOX writes the selected item’s associated ID value as a foreign key to appropriate field of your table.
Both types of boxes require a DATA SOURCE such as a table or an SQL query to ‘populate’ the visible drop-down list - see HERE.
Here’s a short video showing how to add a COMBO BOX to a Base form. Here’s a short general Base Tutorial showing how to create a COMBO BOX.