H
Helmut Weber
Hi Aleksander,
you got to cut off the end-of-cell mark from the word cell, like:
Dim s As String
s = ActiveDocument.Tables(1).Cell(1, 1).Range.Text
s = Left(s, Len(s) - 2)
MsgBox s
--
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Vista Small Business, Office XP
you got to cut off the end-of-cell mark from the word cell, like:
Dim s As String
s = ActiveDocument.Tables(1).Cell(1, 1).Range.Text
s = Left(s, Len(s) - 2)
MsgBox s
Cells(1, 1).Value = s
--
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Vista Small Business, Office XP