Sorry, I had overlooked that you had used "ThisDocument" to set the object variable. "ThisDocument" refers to the document, or template, that contains the code. Change:
Code:
ThisDocument.SelectContentControlsByTitle("PersonalNumber")(1)
To:
Code:
ActiveDocument.SelectContentControlsByTitle("PersonalNumber")(1)