Nicely done! I love this list!! Bob S
On Aug 23, 2014, at 13:22 , Charles E Buchwald <char...@buchwald.ca<mailto:char...@buchwald.ca>> wrote: function Floor pValue if pValue < 0 then return trunc(pValue) - 1 else return trunc(pValue) end Floor I know this is trivial, but here's a ceiling function, just to kind of fill out the thread: function Ceiling pValue if pValue < 0 then return trunc(pValue) else return trunc(pValue) + 1 end Ceiling _______________________________________________ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode