Hello,
I am trying to allow a user to select Ascending or Descending via a form. Currently, I have a form that allows the user to input a FY (Fiscal Year) value. The report then opens pulling only those records that meet the FY value you selected. I would like the form to allow the user to define which FY & which order they need to be in. Currently the report was sorted by "Regional_Number" This is done on the Report_Open even as below:
I'd appreciate any assistance. I haven't found a thread that specifically addresses allowing the user to define sort order, only sort by.
Thanks,
---roystreet
I am trying to allow a user to select Ascending or Descending via a form. Currently, I have a form that allows the user to input a FY (Fiscal Year) value. The report then opens pulling only those records that meet the FY value you selected. I would like the form to allow the user to define which FY & which order they need to be in. Currently the report was sorted by "Regional_Number" This is done on the Report_Open even as below:
Code:
Me.OrderByOn = True
Me.OrderBy = "Regional_Number"
I'd appreciate any assistance. I haven't found a thread that specifically addresses allowing the user to define sort order, only sort by.
Thanks,
---roystreet