我正在尝试从 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