I have a query with about 40 statements like this
For example
The entire statement is together as criteria against one field. The number of characters (X's) and the value of the characters change but all have a wildcard character at the end.
I want to maintain all 40 of these criteria as records in a table so the end user can maintain them (add new, etc)instead of having me make the changes or be asked what is there.
A simple table like
Value
432*
47*
9?9*
I can create and call queries in VBA so that is an option.
[red]Anyone have any cleaver ideas as to how I might even start?[/red]
Thanks
Code:
Like "XXX*"
For example
Code:
Not Like "9?9*" And Not Like "499*" And Not Like "835*" And Not Like "432*" And Not Like "47*" And ....
I want to maintain all 40 of these criteria as records in a table so the end user can maintain them (add new, etc)instead of having me make the changes or be asked what is there.
A simple table like
Value
432*
47*
9?9*
I can create and call queries in VBA so that is an option.
[red]Anyone have any cleaver ideas as to how I might even start?[/red]
Thanks