Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access/Word merge all fields in one doc

Status
Not open for further replies.

digitalpencil

Programmer
Apr 8, 2001
165
GB
Hi,
For the purposes of user friendly deisng, I'm attempting to use an Access form to enter spcific parameters that will eventually make up an XML doc.
Basically, so far I have an access table containing three fields 'listitem name', 'thumb' and 'stream name'. Referencing this table is a form containing the above input fields.
I wish to then take the data stored in the table and merge it with word to make an XML doc formatted as follows:

<xml>
<listitem name="<<listitem name>>" url="streams" thumb="<<thumb>>">
<stream name="<<stream name>>" start="0" len="-1"/>
</listitem>

I obviously wish to repeat this format with all records in the one word doc rather than having the above spread across 'X' docs

I would also like to close the document with an </xml> after all the records have been merged into one doc with the following format

Any advice anyone can offer on how to achieve this is greatly appreciated.

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top