
MS OFFICE
diandian82
这个作者很懒,什么都没留下…
展开
-
Access数据库分页语句
假设共有18(TotalRowNum)条数据,PageSize设为5 SELECT TOP 5 * FROM (SELECT TOP 5 * FROM (SELECT TOP 15 ID, Title, Detail, CreateTime FROM BusinessInfo ORDER BY CreateTime DESC, ID ASC) --原创 2008-07-14 20:24:00 · 1589 阅读 · 0 评论 -
VBA to refresh connections in Excel.
<br />In this code, you can pass parameters to the connection and refresh it, the pivot table in the excel will get updated. It is very useful when developing the excel reports.<br /> <br />Sub ToRefreshPivot() Dim Alias As String 'Alias =原创 2010-12-16 09:28:00 · 1952 阅读 · 0 评论