I have subform on continious sheet mode
I want to creat 5 new record with default values in these records
With one click
How i can creat this button
I have subform on continious sheet mode
I want to creat 5 new record with default values in these records
With one click
How i can creat this button
Use VBA code.
For x = 1 to 5
CurrentDb.Execute "INSERT INTO tablename(fieldname) VALUES(some value)"
Next
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.