D
dangerkeepoff
Hi,
I need to open a new form that shows records with partial field matches to a
field in the original form. So far I have:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Find"
stLinkCriteria = "[Title] like" & "*" & [titlefind] & "*"
DoCmd.OpenForm stDocName, acFormDS, , stLinkCriteria
I have tried just about everything I can think off but will only either all
records or no records. I have tried not setting the WHERE criteria as a
string but using Me.titlefind in OpenForm.
Any help would be greatly appreciated
Thanks
I need to open a new form that shows records with partial field matches to a
field in the original form. So far I have:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Find"
stLinkCriteria = "[Title] like" & "*" & [titlefind] & "*"
DoCmd.OpenForm stDocName, acFormDS, , stLinkCriteria
I have tried just about everything I can think off but will only either all
records or no records. I have tried not setting the WHERE criteria as a
string but using Me.titlefind in OpenForm.
Any help would be greatly appreciated
Thanks