Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #10  
Old 11-22-2021, 10:20 PM
gmayor's Avatar
gmayor gmayor is offline VBA to Populate text content controls in word from excel Windows 10 VBA to Populate text content controls in word from excel Office 2019
Expert
 
Join Date: Aug 2014
Posts: 4,144
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

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
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
VBA to Populate text content controls in word from excel Content Controls for large quantities of text tonia8675309 Word 5 06-08-2018 04:42 PM
VBA to Populate text content controls in word from excel Populate Content Control Dropdowns from Excel Deirdre Kelly Word VBA 23 09-07-2017 02:51 PM
VBA to Populate text content controls in word from excel Rich text/Plain text Content Controls in Template michael.fisher5 Word 9 11-19-2014 06:36 AM
VBA to Populate text content controls in word from excel Moving between Rich text content controls Sammie0Sue Word 4 03-12-2014 01:43 AM
VBA to Populate text content controls in word from excel Rich Text Content Controls: Formatting? tinfanide Word VBA 8 03-04-2013 04:15 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 06:28 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft