J
jim lo
hi,
i want to know any method to print report that can skip
the first record? either by VBA, or SQL statement...
for example, my sql is sth like this...
"select top 3 name, title from officer order by name"
and it returns followings...
name title
============
Brian programmer
jim engineer
sandy project manager
however, iwant to print only jim, sandy records on the
report. how can i do that?
i watched "Report.NextRecord" API but not work. are there
any method to skip a record when generating report?
actually, if there is rownum function access's SQL, i can
use "..where rownum > 1 and rownum < 4" to do that.
so, any help?
i want to know any method to print report that can skip
the first record? either by VBA, or SQL statement...
for example, my sql is sth like this...
"select top 3 name, title from officer order by name"
and it returns followings...
name title
============
Brian programmer
jim engineer
sandy project manager
however, iwant to print only jim, sandy records on the
report. how can i do that?
i watched "Report.NextRecord" API but not work. are there
any method to skip a record when generating report?
actually, if there is rownum function access's SQL, i can
use "..where rownum > 1 and rownum < 4" to do that.
so, any help?