Lookup shipping address for the current customer

L

Lara

For each customer I have multiple shipping addresses. In
the Invoice data-entry form, I want the list of shipping
addresses in the ship-to field to be limited to just the
addresses for the one customer I am invoicing. I'm sure
this is very basic, but I am just beginning to learn
Access, and also don't know much about SQL. Thanks for
the help!
 
C

Chris

I think you need this query of some variant thereof

SELECT [shipping address]
FROM [invoice table]
WHERE ([Customer Name] = "Customer's Name");

Try that and see if it works

Cheers

Chris
 
L

Lara

Thanks, Chris!
-----Original Message-----
I think you need this query of some variant thereof

SELECT [shipping address]
FROM [invoice table]
WHERE ([Customer Name] = "Customer's Name");

Try that and see if it works

Cheers

Chris

-----Original Message-----
For each customer I have multiple shipping addresses. In
the Invoice data-entry form, I want the list of shipping
addresses in the ship-to field to be limited to just the
addresses for the one customer I am invoicing. I'm sure
this is very basic, but I am just beginning to learn
Access, and also don't know much about SQL. Thanks for
the help!
.
.
 

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

Top