3

我在 Excel 2007 中设置了一个组合框,它从另一个工作表中收集其列表项。当我尝试通过宏访问所选项目的值时,返回的只是索引值而不是实际值。

DateDropDown = Sheets("Input Form").Shapes("APPDateDropDown").ControlFormat.Value

组合框中的值列为“Jan-12”,但是当我运行上面的代码时 DateDropDown 返回为 37(项目的索​​引)。

如何让它返回值“Jan-12”?

4

1 回答 1

2
With Sheets("Input Form").Shapes("APPDateDropDown")
    DateDropDown = .ControlFormat.List(.ControlFormat.ListIndex)
End With
于 2012-04-05T13:58:18.133 回答