can you do this in Crystal Reports?
{table_name.DESCRIPTION} in [“ADDRESS*”, “NAME”, “ZIPCODE”]
I want to use the asterick as a wild card, as you can in a Like statement.
Thanks.
bucketOfChicken (BOB member since 2010-11-10)
can you do this in Crystal Reports?
{table_name.DESCRIPTION} in [“ADDRESS*”, “NAME”, “ZIPCODE”]
I want to use the asterick as a wild card, as you can in a Like statement.
Thanks.
bucketOfChicken (BOB member since 2010-11-10)
Yes, sorta. use LIKE instead of IN.
kevlray (BOB member since 2010-06-23)
do like this
{table_name.DESCRIPTION} LIKE “ADDRESS*” OR
{table_name.DESCRIPTION} in [“NAME”, “ZIPCODE”]
karthicse (BOB member since 2006-11-08)