Foxtable(狐表)用户栏目专家坐堂 → [求助] 复制datatable的信息


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

主题:[求助] 复制datatable的信息

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


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

For Each r As Row In Tables("表A").Rows
    Dim dr As DataRow  = DataTables("表A").Find("货号 = '" & r("货号") & "' and 货描 is not null")
    If dr IsNot Nothing Then
        r("货描")=dr("货描")
    End If
Next

 

或者

 

Tables("表A").sort = "货号,货描 desc"
Dim pr As Row = Nothing
For Each r As Row In Tables("表A").Rows
    If pr IsNot Nothing Then
        If pr("货号") = r("货号") Then
            r("货描")=pr("货描")
        End If
    End If
    pr = r
Next


 回到顶部