I have 2 tables.
customer and service that are joined.
Customer has fields companyname and id(pk).
Service has fields companyname(lookup of name from customer table) and cust_id(joined to id in customer)
I have a form which uses the table service. The form uses field companyname to lookup and select a customer.
How to I get the ID(from customer) to populate cust_id(service) to update automatically when companyname is selected in service?
I hope I made that understandable.
Thanks for any help