I am using MS Access 2007.
I have one database call ABC.accdb, which has 2 table. One is input and one is output table
- tbl_input
- tbl_output
- both tables has the same structure
I would like to do the following in pseudo programming: -
While not eof (tbl_input)
record = read one record from tbl_input
ct = Change to Integer(record.count()) ** count is a text file which how number 1..10,000
for x=1 to ct write whole record to tbl_output endfor
endwhile
** basically if the count = 1, I will have 1 duplicate record in tbl_output, if count =2, i will have 2 duplicate record in tbl_output.
I am stuck and need your kind help so I can help to finish my project.
Regards Chloe