以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]窗口表行有条件隐藏 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=145078) |
-- 作者:miaoqingqing -- 发布时间:2020/1/7 17:24:00 -- [求助]窗口表行有条件隐藏 窗口表第一列的值,等于表B第一列时,隐藏该行,求助 |
-- 作者:有点蓝 -- 发布时间:2020/1/7 17:47:00 -- dim r as row = tables("表B").current if r isnot nothing then tables("表A").filter = "第一列 <> \'" & r("第一列") & "\'" end if
|