Chameleon00,
Betty's solution is an alternate solution to InStr(). In her method, the contents of your CallDesc field are coverted to all lower case ("MiKe" would become "mike"), which is why the "LIKE" portion is in all lowercase as well. The asterisk's are "wild cards" meaning that any character can preceed or follow the desired string. I personally have not worked much with "LIKE" to know much more detail.
InStr() returns the starting character position of the desired string, and therefore is greater than zero when the string exists within the other and thus why the first method looks for records where the result of InStr() is greater than zero.
In regards to the parathesis, it is just a matter of "grouping" what you are seeking... the parathesis in this case make the overall criteria "{DateField} is Current Date AND (any of the OR clauses)", without the parathesis Crystal reads it in order, or in your original posting (unwirtten parathesis added for demonstration purposes) "[red]([/red]{DateField} is current AND capture in {CallDesc}[red])[/red] OR "pin pad" in {CallDesc} OR "scanner" in {CallDesc} OR "client upload services" in {CallDesc}"
Ultimately, I read your post before my first reply too quickly, and you should add the LowerCase() function within the InStr() to ensure that any "casing" of the phrases you are looking for are present. Ex: InStr({Field},"Mike") will only return a value greater than zero where the string is exactly capital "M" and lowercase "ike", "MIKE", mike", "MiKe", etc would not be found unless you covert the "case" of your {CallDesc} field to either all UPPERcase (function: UpperCase({your field})) or all lowercase (function: LowerCase({your field})). If you decide UPPER, the string you are looking for will also need to be in all CAPS.
Hope this helps, and I haven't muddied the waters too much on you. Cheers!
Mike
---------------------------------------------------------------
"To be alive is to revel in the moments, in the sunrise and the sunset, in the sudden and brief episodes of love and adventure,
in the hours of companionship. It is, most of all, to never be paralyzed by your fears of a future that no one can foretell."