I got great help here in the past with some code to sort my report through code, depending on choices a user makes on another form. Here is the code that I currently use and works correctly:
Select Case Forms!frmOpenIssueReport.frameOrder.Value
Case Is = 1
Me.GroupLevel(1).ControlSource = "MainIssueID"
Case Is = 2
Me.GroupLevel(1).ControlSource = "IssueName"
Case Is = 3
Me.GroupLevel(1).ControlSource = "IssueDate"
Case Is = 4
Me.GroupLevel(1).ControlSource = "Category"
End Select
This is placed on the Open Procedure of the report and works great. Now the users want to be able to sort the report by either Ascending or Descending. I have been playing with the code but have not found a way to do this. I tried Me.GroupLevel(1).SortOrder but it only allows True or False.
If anyone has any ideas it would be greatly appreciated.
Thank you,
TJBernard
Select Case Forms!frmOpenIssueReport.frameOrder.Value
Case Is = 1
Me.GroupLevel(1).ControlSource = "MainIssueID"
Case Is = 2
Me.GroupLevel(1).ControlSource = "IssueName"
Case Is = 3
Me.GroupLevel(1).ControlSource = "IssueDate"
Case Is = 4
Me.GroupLevel(1).ControlSource = "Category"
End Select
This is placed on the Open Procedure of the report and works great. Now the users want to be able to sort the report by either Ascending or Descending. I have been playing with the code but have not found a way to do this. I tried Me.GroupLevel(1).SortOrder but it only allows True or False.
If anyone has any ideas it would be greatly appreciated.
Thank you,
TJBernard