I need to know the syntax on using sild characters in a range of inputs. For example, I have a begPart and End part inputs. I want the ability to use wild character to give me a selection that would include *Oil or Filter * (this would give me all parts that start with Filter).
Request clarification before answering.
Something like this...
{TableName.FieldName} like "*" & {?My Parameter} & "*"
HTH,
Jason
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
wildcard in crystal syntax is *
field like ["*oil*","*filter*"] // will return values containing oil or filter
field like "filter*" // with return values starting with filterfield like ["*oil","filter*"]
// will return values ending with oil or starting with filter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.