B
Beginner
I have a table with detailed records of sale for every
month. I have to pull up the fields manipulate the data
and printout out a detailed summary of the records for
each customer. (a soft copy is also required).
Right now I am using a query to do the needful and
download the reports to excel, which I send to the
customers as both soft and hardcopies.
My question is :
Now the customer names are all hardcoded in the queries.
Is there a way to have a table of customer names(which
would be updated as and when required) linked to the
monthly table so I get the detailed statements for each
customer.
I tried the alternative-using reports . Reports work well
for taking printouts. for sending the sending the
statements by email, is there any way other than
snapshotviewer, since the users would like to manipulate
the file I send them.
Thanks for any help
Beginner
-----------------------------------------------------------
I have begun a new thread, but attaching my previous
question and answers for reference..
Beginner,
Possibly the way to do it would be to use a combobox whose
RowSource
is the Customers table, and then you can just select the
customer
required from the list. Would that work for you ok?
By the way, the answer given by Chris B was almost right,
but in fact
will not quite work. The Like operator is incorrect in
this context,
and the expression should use !s and not .s so use
criteria like this:
[Forms]![Form1]![ComboBox]
- Steve Schapel, Microsoft Access MVP
month. I have to pull up the fields manipulate the data
and printout out a detailed summary of the records for
each customer. (a soft copy is also required).
Right now I am using a query to do the needful and
download the reports to excel, which I send to the
customers as both soft and hardcopies.
My question is :
Now the customer names are all hardcoded in the queries.
Is there a way to have a table of customer names(which
would be updated as and when required) linked to the
monthly table so I get the detailed statements for each
customer.
I tried the alternative-using reports . Reports work well
for taking printouts. for sending the sending the
statements by email, is there any way other than
snapshotviewer, since the users would like to manipulate
the file I send them.
Thanks for any help
Beginner
-----------------------------------------------------------
I have begun a new thread, but attaching my previous
question and answers for reference..
Beginner,
Possibly the way to do it would be to use a combobox whose
RowSource
is the Customers table, and then you can just select the
customer
required from the list. Would that work for you ok?
By the way, the answer given by Chris B was almost right,
but in fact
will not quite work. The Like operator is incorrect in
this context,
and the expression should use !s and not .s so use
criteria like this:
[Forms]![Form1]![ComboBox]
- Steve Schapel, Microsoft Access MVP