I have an Access db form that collects workers hours, work order numbers, dates, etc. as well as an internal time stamp.
Each week I print a bar code report based on the time stamp parameter, e.g., print only the records that fall between two date ranges.
It has come up that now I want to be sure that I have never printed any record before. I found an example (thread702-483214
) that sets a print flag in a header table, and I understand that concept with that particular example, but I can have hundreds of records printed at any given time.
I thought about updating the table's PrintFlag field to Y on each cycle of each line item on the printed report. That doesn't sound too efficient to me. Is there a better way to set the flag to "Y" other than a docmd.runsql command for each recordID?
Thanks in advance.
Each week I print a bar code report based on the time stamp parameter, e.g., print only the records that fall between two date ranges.
It has come up that now I want to be sure that I have never printed any record before. I found an example (thread702-483214
) that sets a print flag in a header table, and I understand that concept with that particular example, but I can have hundreds of records printed at any given time.
I thought about updating the table's PrintFlag field to Y on each cycle of each line item on the printed report. That doesn't sound too efficient to me. Is there a better way to set the flag to "Y" other than a docmd.runsql command for each recordID?
Thanks in advance.