OK, you can add 'by hand' one record to your table. And you want to add 100 records to it, in code (I assume). Where do you get the information from? Do you make it up as you go? Do you read it from somewhere - if so, from where?
You can do something like:
[tt]
Insert Into tbtMyTable (Select * from tblSomeOtherTable)
[/tt]
or
[tt]
For i = 1 to 100
Insert Into tblMyTable(1, 2, 'abc', i)
Next i
[/tt]
Have fun.
---- Andy