以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  [求助]筛选不为空的行  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=179672)

--  作者:moseser
--  发布时间:2022/9/2 17:09:00
--  [求助]筛选不为空的行
表A,有 A B C D E列,我想只显示,这五列都不为空的行,请问如何实现?
--  作者:jialihaha
--  发布时间:2022/9/2 17:57:00
--  
Tables("表A").Filter = "第一列 Is Null and 第二列 Is Null and 第三列 Is Null and 第四列 Is Null and 第五列 Is Null"
--  作者:有点蓝
--  发布时间:2022/9/3 8:51:00
--  
Tables("表A").Filter = "A Is not Null and B Is not Null and ......"