Recordset merge

S

Scafidel

I am merging from an Access 2007 Form/subforms to a bookmarked Word document.
I am able to use <.MoveNext> to merge the recordsets, but get an error if
there are less records.
The DAO Library is referenced, I've tried this code, but now only the first
record is merged and the fields of the recordsets of the form are replaced
with #Name? (Fortunately, rebooting Access returns the recordset fields to
former state). Any suggestions?

Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDb
Set rs = Forms("OGML").qryMineralOwnersub.Form.Recordset

rs.MoveFirst
InsertAtBookmarks objWord, objDoc, "Owners1", rs!MineralOwner

If Not (rs.BOF And rs.EOF) Then
GoTo Exit_here
rs.MoveNext
End If
InsertAtBookmarks objWord, objDoc, "Owners2", rs!MineralOwner
 
S

Scafidel

I found it. I was closing my RS twice. Remarked one out and it runs good.
Thanks for looking.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top