以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]GetCheckedRows  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=178446)

--  作者:xubing051018
--  发布时间:2022/7/5 11:52:00
--  [求助]GetCheckedRows

For Each r As Row In Tables("员工").GetCheckedRows
    ‘处理代码
Next


以上对勾选中的行进行循环取值的时候,怎么指定按某一列或两列进行排序取值?


--  作者:有点蓝
--  发布时间:2022/7/5 12:14:00
--  
先排序,在取值

Tables("员工").sort = “列1,列2”

For Each r As Row In Tables("员工").GetCheckedRows
    ‘处理代码
Next