Hello, everyone, I'm new here. I hope you can help me.
I have this form
And it prints a report N times according to the number in the "# Copias" box with
DoCmd.SelectObject acReport, "rpt_Tracker", True
DoCmd.PrintOut , , , , Me.txt_Copias
This is the report gets the values on the form and prints them
What I would like to do is print my report but every time have a different box number increasing +1
For example, if my form says BOX 50, # COPIAS 30, the first printed report should say BOX 50 and the last (the 30th) should say BOX 79
Any idea on how I can achieve this?
(sorry I can't post images)