以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]列值对比,新增 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=104734) |
||||
-- 作者:湛江智 -- 发布时间:2017/8/4 9:09:00 -- [求助]列值对比,新增 如何实现表B的列:项目类型,如果表A的列TreeFullPath没有,就新增到表A的列TreeFullPath
|
||||
-- 作者:有点甜 -- 发布时间:2017/8/4 9:36:00 -- For Each dr As DataRow In DataTables("表A").DataRows Dim fdr As DataRow = DataTables("表B").find("项目类型 = \'" & dr("TreeFullPath") & "\'") If fdr Is Nothing Then fdr = DataTables("表B").addnew fdr("项目类型") = dr("TreeFullPath") End If Next |
||||
-- 作者:湛江智 -- 发布时间:2017/8/4 10:21:00 -- ok,非常感谢了 |
||||
-- 作者:湛江智 -- 发布时间:2019/2/25 19:26:00 -- 回复:(有点甜)For Each dr As DataRow In DataTabl... 。 [此贴子已经被作者于2019/2/25 19:27:27编辑过]
|