Click to See Complete Forum and Search --> : Syntax of IIF


P4Prashanth
May 31st, 2005, 05:27 AM
Hi all,
Can anybody let me know the syntax and difference between IIF and IF in crystal reports..

Thanks,
Prashanth

kristyw
May 31st, 2005, 06:46 PM
IIF([Condition], [result if true], [result if false])


Or; (will produce same result) :

IF [condition] then
[result if true]
else
[result if false]

P4Prashanth
June 2nd, 2005, 07:02 AM
Hi Krysty,
My comapany has to generate nearly 100 Cryatal reports.
How do I develop a template report that can be used across all the reports.

Thanks,
Prashanth.