Printing

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
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
 
Back
Top