Foxtable(狐表)用户栏目专家坐堂 → 如何将数据表中的数据,根据状态和部门的不同,遍历添加到word模版中的不同表格中?不同部门每种状态的数据数量不稳定


  共有3556人关注过本帖树形打印复制链接

主题:如何将数据表中的数据,根据状态和部门的不同,遍历添加到word模版中的不同表格中?不同部门每种状态的数据数量不稳定

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110648 积分:563148 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2020/5/8 9:52:00 [显示全部帖子]

要使用vba控制,比如
生成一个表:

Dim app As New MSWord.Application
try
    Dim doc = app.Documents.add
    Dim dt As DataTable = DataTables("表A")
    doc.Tables.Add(Range:=app.Selection.Range,NumRows:=1, NumColumns:= dt.DataCols.Count)
    With app.Selection.Tables(1)
        .ApplyStyleHeadingRows = True
        .ApplyStyleLastRow = True
        .ApplyStyleFirstColumn = True
        .ApplyStyleLastColumn = True
    End With
    For Each dc As DataCol In dt.DataCols
        app.Selection.TypeText(Text:=dc.Name)
        app.Selection.MoveRight(Unit:=12)
    Next
    For Each dr As DataRow In dt.DataRows
        For Each dc As DataCol In dt.DataCols
            app.Selection.TypeText(Text:=dr(dc.Name))
            app.Selection.MoveRight(Unit:=12)
        Next
    Next
    app.Visible = True
catch ex As exception
    msgbox(ex.message)
    app.Quit
finally
    
End try


-------------------------
控制插入WORD文档中的位置

1、先find然后选中;
2、然后建表

 
Dim app As New MSWord.Application
try
    Dim doc = app.Documents.Open("d:\test.doc")
    
    If app.ActiveWindow.Selection.Find.Execute("test") = False Then
        '插入表格
    End If
    
    app.Visible = True
catch ex As exception
    msgbox(ex.message)
    app.Quit
finally
    
End try

 回到顶部