Possible limit on calculations?
-
Is there a limit on the amount of calculations on a page? I have several calculations on the URL above, and some calculated fields show no result or yield an incorrect result. For example, a Property value of 1,000,000 should result in values of 4,500 for my first result field (Stamp Duty Residential Transfer Fee) but no value shows; a Property Value of 5,000,000 should result in a Stamp Duty Residential First Time Home Owner Fee of 218,750 versus the 150,000 being displayed. Example equation for that last calculation (Stamp Duty Residential First Time Home Owner Fee):
(function () {
if (fieldname2 <= 2000000) return 0;
if (fieldname2 > 2000000 || fieldname2 <= 2250000) return (0.05*(fieldname2 – 2000000));
if (fieldname2 > 2250000) return (0.075*(fieldname2 – 2250000)+12500);
})();The page I need help with: [log in to see the link]
- The topic ‘Possible limit on calculations?’ is closed to new replies.