以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 组合查询 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=105156) |
||||
-- 作者:裴保民 -- 发布时间:2017/8/12 20:58:00 -- 组合查询 Dim Filter As String=""
这段代码哪错了运行后(我是手机号是模糊查询、再加上性别)性别怎么不筛选呀
此主题相关图片如下:4566666.png |
||||
-- 作者:有点甜 -- 发布时间:2017/8/13 13:34:00 -- With e.Form.Controls("shoujihaoTextBox2") If .Value IsNot Nothing Then If Filter > "" Then Filter = Filter & " And " End If If sjmhcz.Checked Then Filter &="(iif(客户主手机号 is null, 1=2, 客户主手机号 Like \'%" & .Value & "%\') Or iif(第二手机号 is null, 1=2, 第二手机号 like \'%" & .Value & "%\') Or iif(第三手机号 is null, 1=2,第三手机号 Like \'%" & .Value & "%\'))" Else Filter &="(iif(客户主手机号 is null, 1=2, 客户主手机号 =\'" & .Value & "\') Or iif(第二手机号 is null, 1=2, 第二手机号 = \'" & .Value & "\') Or iif(第三手机号 is null, 1=2,第三手机号 = \'" & .Value & "\'))" End If End If End With |
||||
-- 作者:裴保民 -- 发布时间:2017/8/13 14:04:00 -- 这个是组合查询 就这几句代码吗? 看懂了 [此贴子已经被作者于2017/8/13 14:06:52编辑过]
|
||||
-- 作者:有点甜 -- 发布时间:2017/8/13 14:30:00 -- 把其中的一段修改即可。 |