Re: "Round" not found
From: FxM (fxmanceaux_at_chello.fr)
Date: 05/22/04
- Next message: Tom Ogilvy: "Re: Last Row Question?"
- Previous message: Ron de Bruin: "Re: Send email with alert message"
- In reply to: FxM: "Re: "Round" not found"
- Next in thread: Dave Peterson: "Re: "Round" not found"
- Messages sorted by: [ date ] [ thread ]
Date: Sat, 22 May 2004 22:45:58 +0200
> Hi Alan,
>
> As said by other eminent colleagues round is missing under XL97.
> Try :
>
> public function round97(nb,dec)
> round97 = int(nb*(10^dec)+0.5)/(10^dec)
> end function
Some rounding problems I prefer not to look at ... Seems better with :
round97 = (Int((nb * (10 ^ dec)) + 0.5 + (10 ^ (dec - 4)))) / (10 ^ dec)
HTH
FxM
- Next message: Tom Ogilvy: "Re: Last Row Question?"
- Previous message: Ron de Bruin: "Re: Send email with alert message"
- In reply to: FxM: "Re: "Round" not found"
- Next in thread: Dave Peterson: "Re: "Round" not found"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|