Hi experts,
Can you kindly help me in developing the following report.
We have an Access2007 table name “TableFruit” with two columns, field names: “FRUIT” and “QUANTITY”. The table has few records, for example:
FRUIT QUANTITY
Record 1: Apples 10
Record 2: Grapes 5
We would like to print a report in the following format:
Type of Fruit Quantity Ordered in kgs
Apples 10
Bananas 0
Grapes 5
Mangoes 0
Strawberrys 0
The next day our table would look like, for example:
FRUIT QUANTITY
Record 1: Bananas 8
Record 2: Grapes 3
Record 3: Strawberrys 9
Therefore, when we print the report, it should print as follows:
Type of Fruit Quantity Ordered in kgs
Apples 0
Bananas 8
Grapes 3
Mangoes 0
Strawberrys 9
We receive the table “TableFruit” from our vendor every night and prior to supplying them the fruit the next morning we print the above report.
I have created the first column of the report but am stuck creating and displaying the second column of the report where it should display quantities from the table for the appropriate fruits. I am assuming it would need five text boxes and vba code. I have limited vba coding (starter) experience.
Any help provided is appreciated. Thank you.
Can you kindly help me in developing the following report.
We have an Access2007 table name “TableFruit” with two columns, field names: “FRUIT” and “QUANTITY”. The table has few records, for example:
FRUIT QUANTITY
Record 1: Apples 10
Record 2: Grapes 5
We would like to print a report in the following format:
Type of Fruit Quantity Ordered in kgs
Apples 10
Bananas 0
Grapes 5
Mangoes 0
Strawberrys 0
The next day our table would look like, for example:
FRUIT QUANTITY
Record 1: Bananas 8
Record 2: Grapes 3
Record 3: Strawberrys 9
Therefore, when we print the report, it should print as follows:
Type of Fruit Quantity Ordered in kgs
Apples 0
Bananas 8
Grapes 3
Mangoes 0
Strawberrys 9
We receive the table “TableFruit” from our vendor every night and prior to supplying them the fruit the next morning we print the above report.
I have created the first column of the report but am stuck creating and displaying the second column of the report where it should display quantities from the table for the appropriate fruits. I am assuming it would need five text boxes and vba code. I have limited vba coding (starter) experience.
Any help provided is appreciated. Thank you.