I have a simple Access 2000 table that contains one
numeric long integer field with 0 decimal places.
I am trying to populate the table so the count of the number of records for each integer between 1 and 500 is the same as that integer (1 row of 1, 2 rows of 2's, 3 rows of 3's etc):
Row 1 1
Row 2 2
Row 3 2
Row 4 3
Row 5 3
Row 6 3
Row 7 4
Row 8 4
Row 9 4
Row 10 4
Row 11 5
Row 12 5
Row 13 5
Row 14 5
Row 15 5
.
.
.
Row 125249 500
Row 125250 500
Can anyone help out with how this can be accomplished.
numeric long integer field with 0 decimal places.
I am trying to populate the table so the count of the number of records for each integer between 1 and 500 is the same as that integer (1 row of 1, 2 rows of 2's, 3 rows of 3's etc):
Row 1 1
Row 2 2
Row 3 2
Row 4 3
Row 5 3
Row 6 3
Row 7 4
Row 8 4
Row 9 4
Row 10 4
Row 11 5
Row 12 5
Row 13 5
Row 14 5
Row 15 5
.
.
.
Row 125249 500
Row 125250 500
Can anyone help out with how this can be accomplished.