I need a way to enter 5 records that have the same information with one button click. This database is being used to collect quality information, and instead of clicking a button 5 times for 5 parts, we'd like 1 button that when clicked once adds 5 records with different ID numbers; or 10 records if it's ten good parts.
The interval doesn't much matter, I just want to know if there is a way that we can click 1 button once and it'll but will put in multiple records with different ID Numbers (1, 2, 3, 4, 5, etc) but the rest of the information is the same (Part number, date, etc)
I tried
and
but it did the obvious. Didn't hurt to try.
Thanks in advance!
The interval doesn't much matter, I just want to know if there is a way that we can click 1 button once and it'll but will put in multiple records with different ID Numbers (1, 2, 3, 4, 5, etc) but the rest of the information is the same (Part number, date, etc)
I tried
Code:
Me.Id = Me.Id + 5
Code:
Me.Id = Me.Id * 5
Thanks in advance!
Comment