以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 这样操作合并表格很慢,有没有快一点的方法 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=187570) |
-- 作者:xluoping -- 发布时间:2023/7/27 21:47:00 -- 这样操作合并表格很慢,有没有快一点的方法 一个比较大的文档,已经获取了表格需要合并的单元格位置 集合 hebings,用以下的方法合并非常慢,有没有更好的办法批量加速合并 For Each hebing As String In hebings With Doc.Content.Tables(hebing.Split(",")(4)) .Cell(Row:=hebing.Split(",")(0), Column:=hebing.Split(",")(1)).Merge(MergeTo:=.Cell(Row:=hebing.Split(",")(2), Column:=hebing.Split(",")(3))) End With Next
|
-- 作者:有点蓝 -- 发布时间:2023/7/27 22:04:00 -- 只能这样,没有什么好办法 |