sanders720
Programmer
I have a form with some checkboxes on it. I would like to sort my data based on the checkbox. Below is an example. Order is a public variable that is set to ASC or DESC depending on another checkbox.
I believe Me.Requery may not be correct. There are no errors with this, except that nothing happens. What should I do?
Thanks for the help!
Private Sub chkSortbyPartDesc_Click()
chkSortbyItem = False
chkSortbyPartNo = False
chkSortbyRelBy = False
chkSortbyRelDate = False
Me.OrderBy = "qryBOM.PartDescription " & ORDER
Me.Requery
End Sub
I believe Me.Requery may not be correct. There are no errors with this, except that nothing happens. What should I do?
Thanks for the help!
Private Sub chkSortbyPartDesc_Click()
chkSortbyItem = False
chkSortbyPartNo = False
chkSortbyRelBy = False
chkSortbyRelDate = False
Me.OrderBy = "qryBOM.PartDescription " & ORDER
Me.Requery
End Sub