producing Invoices

R

Rani

hi guys I have an issue
I need to produce invoices for contracts, I have the contract date, the
amount paid per month, and the contract status (open/close) I want to create
a batch that will pass threw all the contracts and will issue invoices
registering the last date an invoice was issued.

any idea will be most welcome.

Thanks
 
B

Bonnie

I would just create a report (invoice) with a query that
filters based on which contracts you want invoiced.
Update the last invoiced field by running a Macro after
running the report (invoices) with the command SetValue
that puts the system date as the value after running the
invoices.
 
K

Kelvin

Do you mean you want to print all invoices that were not printed the last
time? If so, then add another field (Date/Time) to your table. Create a
query on your table with the criteria for this new field set to "Is Null".
That way only invoices not already printed will show. Then create an update
query that will set this blank date field to the current date. Depending on
how you call your report, add code to call this update query after it
prints.

Kelvin
 
R

Rani

is there any sample around for such a process ?

Kelvin said:
Do you mean you want to print all invoices that were not printed the last
time? If so, then add another field (Date/Time) to your table. Create a
query on your table with the criteria for this new field set to "Is Null".
That way only invoices not already printed will show. Then create an update
query that will set this blank date field to the current date. Depending on
how you call your report, add code to call this update query after it
prints.

Kelvin
 
K

Kelvin

I don't know of any, but if you'd like I can create a small sample database
and email it to you.

Kelvin
 
R

Rani

that would be highly appreciated.

Kelvin said:
I don't know of any, but if you'd like I can create a small sample database
and email it to you.

Kelvin

Create
 
R

Rani

and my mail is (e-mail address removed)

Kelvin said:
I don't know of any, but if you'd like I can create a small sample database
and email it to you.

Kelvin

Create
 

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