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
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
thanks
I was thinking the same thing