在 Excel vbscript 中选择范围

发布于 2024-11-05 02:00:04 字数 194 浏览 1 评论 0原文

通过使用 vbScript,我使用 find 方法在命名范围中搜索单元格值,如果找到该值,则在工作表中选择该项目。我需要做的是选择一系列单元格,从“找到的”单元格开始,延伸到列的顶行,再从找到的单元格延伸到列的底部。因此,如果我找到的单元格是 A15,那么我想选择 A14 到 A1 以及从 A16 到列底部的范围。我已经把这个罐子踢了很长时间了。有人可以帮忙吗。提前致谢。

Using vbScript, I use the find method to search a named range for a cell value and select that item in the worksheet if the value is found. What I need to do is select a range of cells starting with the "found" cell and extending to the top row in the column and from the found cell to the bottom of the column. So, if my found cell is A15 then I want to select the range that is A14 through A1 and from A16 to the bottom of the column. I've been kicking this can down the road far to long. Can someone help. Thanks in advance.

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

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

发布评论

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

评论(2

美男兮 2024-11-12 02:00:04
EndCell = "A14" ' You of course have to find A14 using your search function   
Range("A1:"&EndCell).Select
EndCell = "A14" ' You of course have to find A14 using your search function   
Range("A1:"&EndCell).Select
淤浪 2024-11-12 02:00:04
Columns(FoundCell.Column).Select
Columns(FoundCell.Column).Select
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文