I'm trying to build a soundex formula in my last name and first name selection statement. Unfortunately, I'm using the example in CR 8.0 and can't get it to work. Here's their example:
If Soundex{customer.LAST NAME} = Soundex ("Snider"
Then
{customer.LAST NAME}
Else
""
Here's what I used:
If Soundex{PERSONS.prsn_last_name}= Soundex ("Snider"
Then
{PERSONS.prsn_last_name}
Else
""
Unfortunately, I get an error message saying that the "then" is missing and the insertion point defaults to just after the first Soundex.
Any ideas? Anyone get this to work right? Has anyone used their own formulas to create a better soundex than Crystal Reports provides.
Thanks
If Soundex{customer.LAST NAME} = Soundex ("Snider"
{customer.LAST NAME}
Else
""
Here's what I used:
If Soundex{PERSONS.prsn_last_name}= Soundex ("Snider"
{PERSONS.prsn_last_name}
Else
""
Unfortunately, I get an error message saying that the "then" is missing and the insertion point defaults to just after the first Soundex.
Any ideas? Anyone get this to work right? Has anyone used their own formulas to create a better soundex than Crystal Reports provides.
Thanks