Quote:
Originally Posted by JakeLRL
Do I just copy and paste this into the VBA coding area and change the relevent things?
|
Yes.
Quote:
Originally Posted by JakeLRL
I started editing it, how do I get the text to go into a certain content control section like the start of the dropdown is linked with the word "Client", in this casse, I want it to go into a text content control area named "ClientDetails".
|
In that case, you could replace:
ActiveDocument.ContentControls(2).Range.Text = StrDetails
with:
ActiveDocument.SelectContentControlsByTitle("Clien tDetails").Item(1).Range.Text = StrDetails