I have the following code:
Dim RecordId As Integer
Dim asFilter As String
asFilter = Me.RCA_Number
MsgBox (asFilter)
DoCmd.OpenForm "Action Items", acNormal, asFilter, acFormEdit, acWindowNormal
Forms("Action Items").Requery
What this is supposed to do it open a form with only showing record filtered by the field that was double clicked.
It's working for the most part, asFilter is getting set to be the proper value, but the form being opened to display the data is not showing any data. I am most likely missing something on the DoCmd line, but not seeing it, any other set of eyes to see what I am missing would be appreciated.
Thanks.