When I try to save the following formula, I get an error saying "The Remaining Text does not appear to be part of the formula" and Crystal puts the cursor on the line before the IF statement;
Any idea what the problem is ?
Code:
numberVar Limit := 0;
select {RPT_Inventory_1.ClaimType}
case 'Acknowledged' : Limit := 15
case 'Forwarded' : Limit := 10
default: Limit := 0;
If {@WorkingDays} <= Limit Then 1
Else 0;
Any idea what the problem is ?