Printing

G

Guest

I have a table that shows the Item Code and How many the client buy
(quantity), If quantity is 3, then I need to print the item code 3 times on
the report, and so on...

it can be done?
 
?

=?iso-8859-1?Q?J=F6rg_Ackermann?=

Rookie said:
I have a table that shows the Item Code and How many the client buy
(quantity), If quantity is 3, then I need to print the item code 3
times on the report, and so on...

it can be done?

Make a Table tblCounting as follow:
Field: Cnt Long
1
2
2
3
3
3
4
4
4
4
5
5
5
5
5
....


Make a query and add tblCounting and your Table
Make a refrence tblCounting.Cnt <-> YourTable.Quantity

This query should be the base of the report.

Acki
 

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