I have a subform in a tab on my main form. The filter works properly...I see all the records I expect. But the OrderBy on the date field does not work, the rows are shown in ascending primary key sequence. The code follows ..
Any suggestions?
Any suggestions?
Code:
Private Sub Form_Load()
If Me.Recordset.BOF <> Me.Recordset.EOF Then
Me.filter = "ContactID = Contact.ID And CategoryIsFinancial = True"
Me.OrderBy = "ActiveDate DESC"
End If
End Sub