Hi,
As part of my query I have the following code...
If Not IsNull(Me.txtScope) Then
strWhere = strWhere & " (tblIRS.strScope)" & _
" Like '*" & Me.txtScope & "*' AND"
End If
In Me.txtScope a user may type 52PU001 or 52-PU-001.
How can I modify so that it returns both inputs?
Thanks
As part of my query I have the following code...
If Not IsNull(Me.txtScope) Then
strWhere = strWhere & " (tblIRS.strScope)" & _
" Like '*" & Me.txtScope & "*' AND"
End If
In Me.txtScope a user may type 52PU001 or 52-PU-001.
How can I modify so that it returns both inputs?
Thanks