D
Dennis
I have a form that I use to make appointments. I have lots
of history and a fair amount of future appointments. I
know how to sort the form by date but I would like to sort
it to open or begin at the record that is as close to
today as possible. That way I do not have to scroll or use
find to bring that days appointments up. My question is
Can I put a line of code in my select query or is there a
better way? Below is my query in case a line is all I need.
SELECT Resource.ResourceType, Resource.ScheduleDate,
Resource.DrName
FROM Resource
ORDER BY Resource.ScheduleDate DESC;
Thanks,
Dennis
of history and a fair amount of future appointments. I
know how to sort the form by date but I would like to sort
it to open or begin at the record that is as close to
today as possible. That way I do not have to scroll or use
find to bring that days appointments up. My question is
Can I put a line of code in my select query or is there a
better way? Below is my query in case a line is all I need.
SELECT Resource.ResourceType, Resource.ScheduleDate,
Resource.DrName
FROM Resource
ORDER BY Resource.ScheduleDate DESC;
Thanks,
Dennis