如何在 Excel 2003 上创建下拉列表
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了从 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.