我試圖從Word窗體上選定的下拉框中返回文本。VBA將Word文檔中選定的下拉列表值複製到特定的Excel單元格中
word doc是一項調查,其中包含一個帶有多個下拉框的表單。我想將調查對象從每個下拉列表中選擇的值複製到Excel中的特定單元格中。
我已經試過的東西,如:我的代碼
Activedocument.DropDowns("DropDown1").Value;
Activedocument.DropDowns("DropDown1").Text;
Activedocument.DropDowns("DropDown1").SelectedValue;
Activedocument.Shapes("DropDown1").Value etc etc.
當前適用部位:
Dim dd14 As FormFields
With ActiveDocument
Set dd14 = ActiveDocument.FormFields("Dropdown14").DropDown.Value
Cells(iRow + 1, "H") = dd14
End With
這是一個ActiveX控件,還是表單控件? Combobox或下拉列表? – scott