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

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

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

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

最佳答案

With Sheets("Input Form").Shapes("APPDateDropDown")
    DateDropDown = .ControlFormat.List(.ControlFormat.ListIndex)
End With

关于combobox - Excel VBA 组合框返回索引不是值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10029001/

10-13 03:42