如何用VBA修改word中的表格
我正在创建表,并且希望能够通过 VBA 中的代码修改它们。
我需要对表格执行的操作是合并某些单元格并调整其大小,并向某些单元格添加文本。
I have tables that I am creating, and I want to be able to modify them through the code in the VBA.
What I need to do to the tables is merge and resize some cells and also add text to some of the cells.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了附加兰斯所说的内容,这里有一个合并单元格并在这些合并单元格的值中设置文本的示例:
注意:此示例中的表格有三列和两行
To append on what Lance was saying, here's an example of Merging Cells and setting text in the value of those merged cells:
NOTE: The table in this example had three columns and two rows
您需要访问 Table 对象,例如
或
You need to access the Table object, like
or