cancel
Showing results for 
Search instead for 
Did you mean: 

Comparison 2 field (strings)

marek_moravcik
Explorer
0 Kudos

Hallo

please help me.

is possible comparison (check) two strings? For example:

IF {t_contact.name} = {t_officialname.name} then OK else FALSE

How compare (or check) 2 fields?

many thanks

Accepted Solutions (0)

Answers (2)

Answers (2)

marek_moravcik
Explorer
0 Kudos

thanks

I was thinking the same thing

former_member292966
Active Contributor
0 Kudos

Hi Marek,

You've answered your question already. Create a formula in Crystal like:

If {t_contact.name} = {t_officialname.name} then 
     "OK" 
else "FALSE"; 

When you drop the formula on the report, it should show OK or FALSE if they match.

Brian