Re: round(), handling numbers
Re: round(), handling numbers
- Subject: Re: round(), handling numbers
- From: Peter Jaques <email@hidden>
- Date: Tue, 8 Jan 2002 01:21:59 -0800
- Resent-date: Tue, 8 Jan 2002 01:23:17 -0800
- Resent-from: email@hidden
- Resent-message-id: <email@hidden>
- Resent-to: email@hidden
On 8 Jan 02, 8:41AM, Martin Kautz wrote:
>
However, I want to round() the output of e. g. 12.234523311 to 12.23... The
>
function round() would give 12. :-(
there might be a more elegant solution, but i'd multiply by 100, round,
then divide by 100. expensive if you're doing a lot of iterations...
peter