Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

  1. tbl_input
  2. tbl_output
  3. 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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.