B
Bazoz
Hi
Is there a way of populating a ComboBox in a Word doc using VB from data in
the 3rd column of an Excel file?
I found this code, but I need it to access the data from Excel.
Private Sub ComboBox1_Change()
End Sub
Private Sub Document_Open()
With Me.ComboBox1
.AddItem "White"
.AddItem "Black"
.AddItem "Green"
End With
End Sub
Is there a way of populating a ComboBox in a Word doc using VB from data in
the 3rd column of an Excel file?
I found this code, but I need it to access the data from Excel.
Private Sub ComboBox1_Change()
End Sub
Private Sub Document_Open()
With Me.ComboBox1
.AddItem "White"
.AddItem "Black"
.AddItem "Green"
End With
End Sub