以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 姓名一列如何根据contains查找姓一列的数据 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=83554) |
||||||||||||||||||
-- 作者:daxis0225 -- 发布时间:2016/4/12 11:37:00 -- 姓名一列如何根据contains查找姓一列的数据 姓名一列如何根据contains查找姓一列的数据
|
||||||||||||||||||
-- 作者:daxis0225 -- 发布时间:2016/4/12 11:58:00 -- 求高手指点 |
||||||||||||||||||
-- 作者:大红袍 -- 发布时间:2016/4/12 12:10:00 -- 循环每一行才能contains Dim str As String = "112233" For Each dr As DataRow In DataTables("表A").Select("第二列 is not null") If str.Contains(dr("第二列")) Then msgbox(dr("第二列")) End If Next
|
||||||||||||||||||
-- 作者:daxis0225 -- 发布时间:2016/4/12 17:15:00 -- |