I'm converting a crystal report to stimulsoft, and the report has alot of formulas in it that uses IF statements e.g.
Code: Select all
IF {Claim.ClaimType} = 1 Or {Claim.ClaimType} = 12 Or {Claim.ClaimType} = 13 Or {Claim.ClaimType} = 14 Or {Claim.ClaimType} = 15 Then
IF {Claim.NoPassengers} = 1 THEN
'No'
ELSE
'Yes'
ELSE
''
Thankx