使用 VB 将 Excel 数据提取到 Word 中

发布于 2024-10-16 02:36:31 字数 189 浏览 4 评论 0原文

我需要在Excel中查找特定数据并将相关信息复制到word字段中。

1) 密钥存储在 Word 字段之一(例如“primaryID”)中。

2)Excel中有一个primaryID列

我在Word中使用Excel对象库引用。有没有办法“VLOOKUP”Excel中的数据并将其复制到Word中? 还有其他选择吗?

I need to find specific data in Excel and copy relevant information into word fields.

1) The key is stored in one of the Word fields (say "primaryID").

2) There's a primaryID column in Excel

I am using Excel Object Library reference in Word. Is there a way to "VLOOKUP" the data in Excel and copy it to Word?
Are there any alternatives?

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

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

发布评论

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

评论(1

各空 2024-10-23 02:36:31

您尝试过 range 对象的 find 方法吗?根据 MS VBA 帮助,它“返回一个 Range 对象,该对象代表找到信息的第一个单元格”。

要使用 VBA 获取行号,假设 id 是唯一的:

workbook.WorkSheets(sheetName).Columns(primaryID_Column).Find(ID_to_find).Row

Have you tried the find method of the range object? It "returns a Range object that represents the first cell where [the] information is found" according to MS VBA help.

To get the row number using VBA, assuming ids are unique:

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