I would like have a function to convert a user entered, comma separated, text string to a proper text string to be used in a WHERE clause.
Example:
Dim strInput, strConvInput, strSQL As String
strInput = Me.BoLInput ' user entered string
' user string looks like: 123a, 134D, 115,123
' user...