megatronixs
Registered User.
- Local time
- Today, 12:53
- Joined
- Aug 17, 2012
- Messages
- 719
Hi all,
I'm trying to filter a form in datasheet view to display a column called "end_date_working_on" to be on top the ones that have no date.
It should be when the forms open up.
I tried this code:
but, it is conflicting with other code that I use to show the details in the form where the subfrom in datasheet view is based. THis code when clicking on the record_id it wil show in the form the details. But with filtering it does not react anymore.
Any idea how to solve this?
Greetings.
I'm trying to filter a form in datasheet view to display a column called "end_date_working_on" to be on top the ones that have no date.
It should be when the forms open up.
I tried this code:
Code:
'Private Sub Form_Open(Cancel As Integer)
'Me.OrderBy = "end_date_working_on"
'Me.OrderByOn = True
'End Sub
Code:
Private Sub request_id_Click()
DoCmd.OpenForm "frm_request_tool", acViewNormal, , "request_id=" & Me.request_id
End Sub
Any idea how to solve this?
Greetings.