M
mon
Thanks, Joel, I am using the refresh button and it works
so well that I would now like to do it for the other three
fields I have; Claimant, Client and employee. The due
dates and jobnumber order are the main ones. Also can the
text on the button be changed to say which order it is?
Thanks, Mon
future dates). A command button opens a form showing open
reports by due dates. On that form I would like a button
to "reorder open reports by their job numbers". Once I
am in that view the button should "reorder open reports
(BACK TO) by due dates)? Thanks Monika
so well that I would now like to do it for the other three
fields I have; Claimant, Client and employee. The due
dates and jobnumber order are the main ones. Also can the
text on the button be changed to say which order it is?
Thanks, Mon
Hi All, My opening form shows records by critical dates-----Original Message-----
Enter the following code in the click event of the button:
If Me.OrderBy = "JobNumbers" Then
Me.OrderBy = "DueDates"
Else
Me.OrderBy = "JobNumbers"
End If
Me.OrderByOn = True
future dates). A command button opens a form showing open
reports by due dates. On that form I would like a button
to "reorder open reports by their job numbers". Once I
am in that view the button should "reorder open reports
(BACK TO) by due dates)? Thanks Monika