Foxtable(狐表)用户栏目专家坐堂 → [求教]代码修改-行转列


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

主题:[求教]代码修改-行转列

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2019/6/21 15:36:00 [显示全部帖子]

For Each adr As DataRow In DataTables("泵送明细_Table8").DataRows
    If adr.IsNull("年月") = False Then
        For Each adc As DataCol In DataTables("泵送明细_Table8").DataCols
            If adc.Name.StartsWith("泵工基础工资") AndAlso adr.IsNull(adc.Name) = False Then
                Dim bdr As DataRow = DataTables("泵送明细_Table6").AddNew()
                bdr("第一列") = adr("年月")
                bdr("第二列") = adc.Name.split("_")(1)
                bdr("第三列") = adr(adc.Name)
            End If
        Next
    End If
Next

 回到顶部