Ok, that was an example for 3 textboxes, but what is going to happen when
the template has a lot of textboxes?. The final project is going to have
around 14 templates with a lot of textboxes, is the reason for I want to
develop a more practical code like
Dim x As Shape
For Each x In ActiveDocument.Shapes
If x.Type = msoTextBox Then
x.TextFrame.TextRange.Text = " "
End If
Next
but that works

. Any idea about?