M
MartinR
I wish to open a form in database view showing only the data that has
nothing in the date returned field.
Currently this is the code i have but it is not working.
Dim stDocName As String
Dim stLinkCriteria As String
stLinkCriteria = IsNull([Date Returned])
stDocName = "Returnsform"
DoCmd.OpenForm stDocName, acFormDS, , stLinkCriteria
The problem is in the "stLinkCriteria...." line of code. It says the
Database cannot find the field "|" reffered to in your expression. What
code should i use or should i use a filter or a query to do this?
Any Ideas..
Martin
nothing in the date returned field.
Currently this is the code i have but it is not working.
Dim stDocName As String
Dim stLinkCriteria As String
stLinkCriteria = IsNull([Date Returned])
stDocName = "Returnsform"
DoCmd.OpenForm stDocName, acFormDS, , stLinkCriteria
The problem is in the "stLinkCriteria...." line of code. It says the
Database cannot find the field "|" reffered to in your expression. What
code should i use or should i use a filter or a query to do this?
Any Ideas..
Martin