Hi

I am new to working with VBA in word tables and can't figure out how to bring the text from a table cell back into the userform textbox. I have this code and it seems alright just not doing what I want it to do. Please help me!!
Code:
Sub Initialize()
With ActiveDocument.Tables(6)
.TextBox1.text = Left(.Cell(2, 2).Range.text, Len(.Cell(2, 2).Range.text) - 2)
.TextBox2.text = Left(.Cell(3, 2).Range.text, Len(.Cell(3, 2).Range.text) - 2)
.TextBox3.text = Left(.Cell(4, 2).Range.text, Len(.Cell(4, 2).Range.text) - 2)
.TextBox4.text = Left(.Cell(5, 2).Range.text, Len(.Cell(5, 2).Range.text) - 2)
.TextBox5.text = Left(.Cell(6, 2).Range.text, Len(.Cell(6, 2).Range.text) - 2)
End With
End Sub