4 if conditions in calculated fields
-
Dear codepeople,
my equation in calculation Field 8 is:
(function(){
if(fieldname2 < 520 ) return 100+((fieldname2-100)*0.2);
if(fieldname2 >= 520 ) return 184+((fieldname2-520)*0.3);
if(fieldname2 >= 1000 ) return 328+((fieldname2-1000)*0.1);
if(fieldname2 >= 1200 ) return 348);
})();
Everything works with the first and second statements – What do I have to do to fulfill conditions 3 and 4?
Thanks for help!
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘4 if conditions in calculated fields’ is closed to new replies.