以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  今天没问问题有点郁闷  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=73794)

--  作者:hbhb
--  发布时间:2015/8/26 21:49:00
--  今天没问问题有点郁闷
大师:如实例,请问如何把表b中的数据提取写入表a?同名的最好按上面的组别自动标记后查找写入。
 下载信息  [文件大小:   下载次数: ]
图片点击可在新窗口打开查看点击浏览该文件:管理项目5.zip


--  作者:大红袍
--  发布时间:2015/8/26 21:51:00
--  
能不能不这样设计表啊?数据不规范啊
--  作者:大红袍
--  发布时间:2015/8/26 22:03:00
--  

处理表B

 

Dim pdr As DataRow = Nothing
For Each dr As DataRow In DataTables("表B").Select("姓名 is not null", "_Sortkey")
    If dr.IsNull("工资") Then
        pdr = dr
    Else
        dr("第三列") = pdr("姓名")
    End If
Next

 

查询表A

 

Dim pdr As DataRow = Nothing
For Each dr As DataRow In DataTables("表A").Select("姓名 is not null", "_Sortkey")
    If dr("姓名") Like "第*" Then
        pdr = dr
    Else
        Dim fdr As DataRow = DataTables("表B").Find("姓名 = \'" & dr("姓名") & "\' and 第三列 = \'" & pdr("姓名") & "\'")
        If fdr IsNot Nothing
            dr("第三列") = pdr("姓名")
            dr("工资") = fdr("工资")
        End If
    End If
Next


--  作者:hbhb
--  发布时间:2015/8/26 22:18:00
--  
谢谢!就是一些傻货的不规范数据难处理!