Hi Zed,
You may need to modify this to do exactly what you want:
' Macro to create multiple items per condition from a document created by a
catalog or directory type mailmerge
Dim source As Document, target As Document, scat As Range, tcat As Range
Dim data As Range, stab As Table, ttab As Table
Dim i As Long, j As Long, k As Long, n As Long
Set source = ActiveDocument
Set target = Documents.Add
Set stab = source.Tables(1)
k = stab.Columns.Count
Set ttab = target.Tables.Add(Range:=Selection.Range, numrows:=1,
numcolumns:=k - 1)
Set scat = stab.Cell(1, 1).Range
scat.End = scat.End - 1
ttab.Cell(1, 1).Range = scat
j = ttab.Rows.Count
For i = 1 To stab.Rows.Count
Set tcat = ttab.Cell(j, 1).Range
tcat.End = tcat.End - 1
Set scat = stab.Cell(i, 1).Range
scat.End = scat.End - 1
If scat <> tcat Then
ttab.Rows.Add
j = ttab.Rows.Count
ttab.Cell(j, 1).Range = scat
ttab.Rows.Add
For n = 2 To k
Set data = stab.Cell(i, n).Range
data.End = data.End - 1
ttab.Cell(ttab.Rows.Count, n - 1).Range = data
Next n
Else
ttab.Rows.Add
For n = 2 To k
Set data = stab.Cell(i, n).Range
data.End = data.End - 1
ttab.Cell(ttab.Rows.Count, n - 1).Range = data
Next n
End If
Next i

Signature
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.
Hope this helps
Doug Robbins - Word MVP
> Hi Cindy
>
[quoted text clipped - 42 lines]
> > This reply is posted in the Newsgroup; please post any follow
> > question or reply in the newsgroup and not by e-mail :-)
Zed Gorski - 12 May 2004 06:05 GMT
Hi,
Thanks for response
I am interested how to solve my problem on conceptual level
First question: Can be done without VBA
If VBA has to be used , please provide only step by step procedure
Thanks
Zed
> Hi Zed,
>
[quoted text clipped - 89 lines]
> > > This reply is posted in the Newsgroup; please post any follow
> > > question or reply in the newsgroup and not by e-mail :-)
Cindy M -WordMVP- - 12 May 2004 09:56 GMT
Hi Zed,
> I am interested how to solve my problem on conceptual level
> First question: Can be done without VBA
> If VBA has to be used , please provide only step by step procedure
Did you read up on the one-to-many information on my website, in the
Special Merges section?
I can assure you, we have no interest in re-typing that very basic
information. That's why it's on the website :-) Follow-up questions
to the various approaches listed there, yes.
Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Sep 30
2003)
http://www.word.mvps.org
This reply is posted in the Newsgroup; please post any follow
question or reply in the newsgroup and not by e-mail :-)
Zed Gorski - 13 May 2004 04:16 GMT
Hi Cindy,
Thank you for sugestions and response
Zed
> Hi Zed,
>
[quoted text clipped - 17 lines]
> This reply is posted in the Newsgroup; please post any follow
> question or reply in the newsgroup and not by e-mail :-)