以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 如何不受大数值干扰筛选指定文字 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=117162) |
-- 作者:dugu8226 -- 发布时间:2018/4/8 10:02:00 -- 如何不受大数值干扰筛选指定文字 我有一列树脂如下,当我筛选60的时候,只想显示第1行和第3行,不想显示第4行和第6行,首次接触,请大家指点 60 70 60,70 160 170 160,170 |
-- 作者:y2287958 -- 发布时间:2018/4/8 10:21:00 -- Dim lst As new List(of String) For Each dr As DataRow In DataTables("表B").DataRows If Array.IndexOf(dr("第一列").split(","),"60") <> -1 Then lst.Add(dr("_Identify")) End If Next Tables("表B").Filter = "[_Identify] in (" & String.join(",",lst.ToArray) & ")"
|
-- 作者:有点甜 -- 发布时间:2018/4/8 11:44:00 -- 参考代码
Tables("表A").Filter = " (\',\' + 第一列 + \',\') like \'%," & 60 & ",%\'" |