nerdalert1
Programmer
Hello all how do I do this.
- I have 2 fields 1 called ScanName and 1 called ScanOrderName
- I have 2 values that can be vice versa in these fields like so:
Value 1: B Barker
Value 2: Bob Barker
I want to somehow wild card search and flag a partial match. In this case it would be a wildcard match. So it could be like so either:
ScanName = B Barker
ScanOrderName = Bob Barker
ScanName = Bob Barker
ScanOrderName = B Barker
In this case I want it flagged as match. So its a whole word match I guess you can say.
However in this case I do not want a match
ScanName = Charlie
ScanOrderName = Charl
or
ScanName = Charl
ScanOrderName = Charlie
So a whole word has to match.
Thanks all
- I have 2 fields 1 called ScanName and 1 called ScanOrderName
- I have 2 values that can be vice versa in these fields like so:
Value 1: B Barker
Value 2: Bob Barker
I want to somehow wild card search and flag a partial match. In this case it would be a wildcard match. So it could be like so either:
ScanName = B Barker
ScanOrderName = Bob Barker
ScanName = Bob Barker
ScanOrderName = B Barker
In this case I want it flagged as match. So its a whole word match I guess you can say.
However in this case I do not want a match
ScanName = Charlie
ScanOrderName = Charl
or
ScanName = Charl
ScanOrderName = Charlie
So a whole word has to match.
Thanks all