如何创建引用 Excel 中的名称的 Excel 范围对象 (c#)
我有一个具有各种名称的 Excel 工作表,我想创建一个引用该名称的对象。我正在使用的代码使用单元格地址,但这非常麻烦,我宁愿使用名称。
我的代码现在看起来像这样:
myWorksheet= GetWorkSheet(myWorkbook);
Excel.Range range = myWorksheet.get_Range(cell1, cell2);
我不想使用 cell1 和 cell2,而是使用 Excel 中已经存在的描述范围的名称。
感谢您的帮助。
I have an excel worksheet with various names and I want to create an object that references that name. The code I am working with uses the cell address, but that is very cumbersome, and I would rather use the names.
My code looks like this right now:
myWorksheet= GetWorkSheet(myWorkbook);
Excel.Range range = myWorksheet.get_Range(cell1, cell2);
Instead of using cell1 and cell2, I would like to use the name that is in Excel already that describes the range.
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需执行以下操作:
Simply do: