I'm very new to Forms calculations. Can anyone tell me if having three IF formulas in one field is possible? I'm working on a way to calculate a pay rate based on the number of students in a class. If it's more than 15, it's one rate, if it's more than 20, it's a different rate, and if it's over 25, it's a third rate. So I guess there are 4 effective rates.
This is what I have so far:
=IF(table.crs_enroll>15,"0","Enroll16"); &IF(table.crs_enroll<20,"Enroll21","Enroll16"); &IF(table.crs_enroll<25,"Enroll26","Enroll21");
Saving that formula doesn't indicate a syntax error, but it also returns results for all three formulas, which isn't helpful. Is there an IF/THEN syntax in Laserfiche forms?
What would be a better way to do this?