Pricecalculation IF ELSE
-
Hey there,
hopefully you can tell me, whats wrong with my code:
(function(){
IF(FIELDNAME2 > 749) return (FIELDNAME2*0.25) else return IF(FIELDNAME2 > 499) return (FIELDNAME2*0.3) else return IF(FIELDNAME2 > 249) return (FIELDNAME2*0.35) else return IF(FIELDNAME2 > 99) return (FIELDNAME2*0.4) else return IF(FIELDNAME2 > 49) return (FIELDNAME2*0.5) else return IF(FIELDNAME2 > 9) return (FIELDNAME2*0.6) else return (FIELDNAME2*0.8);})()
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Pricecalculation IF ELSE’ is closed to new replies.