I need to print schedules stored in a table "tblSCHED". The problem is, for a different person, there is a different start point. If the selected schedule is 9 weeks in length, and the start point is week 6, then I want to display the weeks in this order 6, 7, 8, 9, 1, 2, 3, 4, 5.
WHEN I USE...
"SELECT tblSCHED.* FROM tblSCHED WHERE WEEKNUM >= STARTPOINT"
I only get results to EOF.
I wrote a function that gets one record at a time, then loops until the total weeks desired is achieved. But this method is rather slow.
Any help would be appreciated.
WHEN I USE...
"SELECT tblSCHED.* FROM tblSCHED WHERE WEEKNUM >= STARTPOINT"
I only get results to EOF.
I wrote a function that gets one record at a time, then loops until the total weeks desired is achieved. But this method is rather slow.
Any help would be appreciated.