Foxtable(狐表)用户栏目专家坐堂 → [求助]含有窗口文本框中字符2个以上的行筛选出来


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

主题:[求助]含有窗口文本框中字符2个以上的行筛选出来

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


加好友 发短信
等级:超级版主 帖子:110443 积分:562081 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2024/8/28 8:46:00 [显示全部帖子]

Dim s, s1, Filter As String
s = Forms("窗口1").Controls("combobox1").text
For Each dr As DataRow In DataTables("表A").DataRows
    s1 = dr("第一列")
    If s1.Length - s1.Replace(s, "").Length >= 2 Then
        Filter = Filter & "," & dr("_identify") 
    End If
Next
Filter = Filter.Trim(",")
Filter = "_identify in (" & Filter & ")"
Output.Show(filter)
Tables("表A").Filter = Filter

 回到顶部