What I'm trying to do is take the value of text field A - and either round up or round down - and display the new number in field B.
From what I understand, the following should be used for rounding numbers:
Math.round
Math.floor
Math.ceil
What I don't know is how to implement these in a script that I would paste into the "custom calculation script" box. Or perhaps I could us the "simplified field notation"?
Thanks
[url=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Math/ceil]Math.ceil(x)l[/url]
[url=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Math/floor]Math.floor(x)[/url]
[url=https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Math/round]Math.round(x)[/url]
George Kaiser