Martin,
If your are writing DB data to a table then you shouldn't need bookmarks.
Just reference the cell location. For example. This code writes the cell
reference to each cell in a table.
Sub ScratchMacro()
Dim oTbl As Word.Table
Dim i As Long
Dim j As Long
Set oTbl = ActiveDocument.Tables(1)
For i = 1 To oTbl.Rows.Count
For j = 1 To oTbl.Columns.Count
oTbl.Cell(i, j).Range.Text = "Cell location" & i & " " & j
Next j
Next i
'If you have more DB records than the table size then add a row for each
record
oTbl.Rows.Add
End Sub

Signature
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.
> Hello!
>
[quoted text clipped - 14 lines]
>
> Cheers Martin
Martin_Maha - 05 Sep 2007 11:18 GMT
Thx for the quick reply Greg,
this should(could) fix my Problem!
M.
> Martin,
>
[quoted text clipped - 35 lines]
> >
> > Cheers Martin