如何在 Excel 2003 上创建下拉列表

发布于 2024-12-10 15:31:55 字数 568 浏览 0 评论 0原文

我正在使用 AutomationFactory.CreateObject("Excel.Application") 创建 Excel 文件。

我使用这些代码行创建一个下拉列表:

mySheet.Range("A1").Validation.Add(Type:=Interop.Excel.XlDVType.xlValidateList, _
        AlertStyle:=Interop.Excel.XlDVAlertStyle.xlValidAlertStop, _
        [Operator]:=Interop.Excel.XlFormatConditionOperator.xlBetween,
                                            Formula1:="=List!$C$3:$C$903")

公式 (Formula1:="=List!$C$3:$C$903") 返回 900 行

在 Excel 2010 中它工作得很好,但是在 Excel 2003 中没有下拉列表是在细胞上创建的

还有其他方法吗?

I'm creating Excel files using AutomationFactory.CreateObject("Excel.Application").

I'm using these lines of codes to create a dropdown list:

mySheet.Range("A1").Validation.Add(Type:=Interop.Excel.XlDVType.xlValidateList, _
        AlertStyle:=Interop.Excel.XlDVAlertStyle.xlValidAlertStop, _
        [Operator]:=Interop.Excel.XlFormatConditionOperator.xlBetween,
                                            Formula1:="=List!$C$3:$C$903")

The formula (Formula1:="=List!$C$3:$C$903") returns 900 rows

In Excel 2010 it works perfectly, however, in Excel 2003 no dropdownlist are created on the cell

Any alternative ways?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你对谁都笑 2024-12-17 15:31:55

为了从 Excel 中的另一个工作表创建下拉列表,您必须创建一个命名范围,然后在验证公式中声明命名范围。

请参阅本教程了解如何从头开始。

In order to create a dropdown list from another sheet in Excel, you have to create a named range and then declare the named range in the Validation formula.

See this tutorial on how to do it from scratch.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文