Foxtable(狐表)用户栏目专家坐堂 → 模糊筛选


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

主题:模糊筛选

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


加好友 发短信
等级:幼狐 帖子:171 积分:1615 威望:0 精华:0 注册:2013/8/21 9:41:00
模糊筛选  发帖心情 Post By:2022/1/14 12:34:00 [显示全部帖子]

Dim Filter As String
With
e.Form.Controls("cmbProduct")
   
If .Value IsNot Nothing Then
        Filter =
"产品 = '" & .Value & "'"
   
End If
End
With
With
e.Form.Controls("cmbCustomer")
   
If .Value IsNot Nothing Then
       
If Filter > "" Then
            Filter = Filter &
" And "
       
End If
        Filter = Filter &
"客户 = '" & .Value & "'"
   
End If
End
With
If
Filter > "" Then
    Tables(
"订单").Filter = Filter
End If

如果需要改为模糊筛选,"="改为Like吗?请问怎么改?谢谢


 回到顶部
帅哥哟,离线,有人找我吗?
asionwong
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:171 积分:1615 威望:0 精华:0 注册:2013/8/21 9:41:00
  发帖心情 Post By:2022/1/14 13:25:00 [显示全部帖子]

如果原始不加载表数据,用
Dim Filter As String
With
 e.Form.Controls("cmbProduct")
    
If .Value IsNot Nothing Then
        Filter = 
"产品 like '*" & .Value & "*'"
    
End If
End
 With
With
 e.Form.Controls("cmbCustomer")
    
If .Value IsNot Nothing Then
        
If Filter > "" Then
            Filter = Filter & 
" And "
        
End If
        Filter = Filter & 
"客户 like '*" & .Value & "*'"
    
End If
End
 With
If 
Filter > "" Then
    DataTables("订单_table1").LoadFilter = Filter
    DataTables("订单_table1").Load
End If

这个不行
[此贴子已经被作者于2022/1/14 13:27:35编辑过]

 回到顶部