Sub EpurerA(Wdoc As Object, pos&, num%, signet)
Dim page%, r As Object
Wdoc.Range(pos, pos).Delete
page = Wdoc.Tables(num).Range.Information(1)
pos = Wdoc.Bookmarks(signet).Range.Start - 1
Set r = Wdoc.Range(pos, pos)
While r.Information(1) > page
Wdoc.Application.Selection.Delete 'supprime le saut de ligne
Wend
End Sub