使用 VB 将 Excel 数据提取到 Word 中
我需要在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过 range 对象的 find 方法吗?根据 MS VBA 帮助,它“返回一个 Range 对象,该对象代表找到信息的第一个单元格”。
要使用 VBA 获取行号,假设 id 是唯一的:
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: