I am trying to clear old entries in TextBoxes using this code
 With UserForm1
   For a = 1 To 6
   .TextBox & "a".Value=""
   Next a
   End With
This fails with the & highlighted and a "Syntax error"
Why is this wrong?
John