以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  数据表中的行数用代码怎么表示  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=129368)

--  作者:yfy13338431925
--  发布时间:2018/12/27 12:06:00
--  数据表中的行数用代码怎么表示

如何用代码表示前4行数据和最后4行数据


--  作者:有点甜
--  发布时间:2018/12/27 12:11:00
--  

Tables("表A").rows(0)

Tables("表A").rows(1)

Tables("表A").rows(2)

Tables("表A").rows(3)

 

--------------

 

Tables("表A").rows(Tables("表A").Rows.count-4)

Tables("表A").rows(Tables("表A").Rows.count-3)

Tables("表A").rows(Tables("表A").Rows.count-2)

Tables("表A").rows(Tables("表A").Rows.count-1)