Hello,
I have a subform, that displays in datasheet view. The datasheet displays a list of records from a SQL view.
On the datasheet I have a Job Number field (along with other fields). When the Job Number is double-clicked, another form is then opened that contains detailed information about that Job. When that form is closed, I would like to move the selected Job Number to the top of the datasheet, followed by jobs that are listed after.
The Datasheet form Record Source property is a sql statement:
SELECT * FROM dbo_view_invoicejobslist ORDER BY dbo_view_invoicejobslist.jobnumber DESC , dbo_view_invoicejobslist.drop;
The user do not want to re-scroll thru the Datasheet.
How would I do that? Thanks so much for your help!
smsemail
I have a subform, that displays in datasheet view. The datasheet displays a list of records from a SQL view.
On the datasheet I have a Job Number field (along with other fields). When the Job Number is double-clicked, another form is then opened that contains detailed information about that Job. When that form is closed, I would like to move the selected Job Number to the top of the datasheet, followed by jobs that are listed after.
The Datasheet form Record Source property is a sql statement:
SELECT * FROM dbo_view_invoicejobslist ORDER BY dbo_view_invoicejobslist.jobnumber DESC , dbo_view_invoicejobslist.drop;
The user do not want to re-scroll thru the Datasheet.
How would I do that? Thanks so much for your help!
smsemail