![]() |
|
#10
|
||||
|
||||
|
The following should work, provided your sharepoint path is correct
Code:
Sub Exec_Summary2()
'
Dim objWord As Object
Dim oDoc As Object
Dim sUserName As String: sUserName = Environ$("username")
Dim oCC As Object
On Error Resume Next
Set objWord = GetObject(, "word.application")
If Err.Number <> 0 Then
On Error GoTo 0
Set objWord = CreateObject("Word.Application")
End If
objWord.Visible = True
Set oDoc = objWord.Documents.Open("https://XXXX-my.sharepoint.com/personal/" & UserName & "_XXXX/Documents/_MyProfile/Desktop/Business%20Executive%20Summary%20MASTER.docx?web=1")
For Each oCC In oDoc.ContentControls
Select Case UCase(oCC.Title)
Case "CASENAME" 'This is the name being referenced for CC in Word
oCC.Range.Text = Range("CAseName") 'This is the cell being referenced in excel
Case "TITLE OF CONTROL 2"
'oCC.Range.Text = whatever
Case "TITLE OF CONTROL 3"
'oCC.Range.Text = whatever
'etc
End Select
Next oCC
Set objWord = Nothing
Set oCC = Nothing
Set oDoc = Nothing
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Content Controls for large quantities of text
|
tonia8675309 | Word | 5 | 06-08-2018 04:42 PM |
Populate Content Control Dropdowns from Excel
|
Deirdre Kelly | Word VBA | 23 | 09-07-2017 02:51 PM |
Rich text/Plain text Content Controls in Template
|
michael.fisher5 | Word | 9 | 11-19-2014 06:36 AM |
Moving between Rich text content controls
|
Sammie0Sue | Word | 4 | 03-12-2014 01:43 AM |
Rich Text Content Controls: Formatting?
|
tinfanide | Word VBA | 8 | 03-04-2013 04:15 AM |