Hi
I'm using the code
in a query.Code:Like [TempVars]![varBaptismForename] & "*"
Does the &"*" act like a soundex search ?
thanks
Ian
Hi
I'm using the code
in a query.Code:Like [TempVars]![varBaptismForename] & "*"
Does the &"*" act like a soundex search ?
thanks
Ian
No. The "Like" is used for pattern matching, with the "*" being a "wild card" meaning "anything that follows".
So, if
[TempVars]![varBaptismForename] = "Jon", then Like [TempVars]![varBaptismForename] & "*"
will match "Jon", "Jonathan", "Jonas" or "Jones", but it will not match "John", "Jane" or "Joan"