Form/SubForm

G

Guest

Two tables - one has location addresses and loan numbers, the other has
banks. The loans have to be associated with a particular bank. One to many
- banks to loans. I need the user to use a form to enter a new property
address and in the process select which bank originated the loan.

I cant seem to figure out how to get a form to work for this. Any
suggestions, given I dont know any access vba at all and have to use the
wizard?

--
Regards,

Bryan Brassell
Padgett Business Services
281-897-9141
 
C

Charles Calvert

Two tables - one has location addresses and loan numbers, the other has
banks. The loans have to be associated with a particular bank. One to many
- banks to loans. I need the user to use a form to enter a new property
address and in the process select which bank originated the loan.

Assuming that they can select from a list of bank names, you could use
a combobox with the Row Source Type set to "Table/Query" and the Row
Source set to "SELECT id, name FROM banks ORDER BY name" or something
similar. You'd then set Column Count to 2, Column Widths to 0";1" to
hide the first column and Bound Column to 1.

Make the datasource of the combo the field that holds the foreign key
to the banks table (presumably the "id" field from banks) and you're
done.
 
G

Guest

Thanks - much simpler than what I was trying!
--
Regards,

Bryan Brassell
Padgett Business Services
281-897-9141
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Credit Score 5
count rows with data 4
CurDir 5
Select Criterion - wildcard 1
counts rows in data 7
First 200 Query 6
excluding records 2
Find last used column 8

Top