Try this: SET VAR vrate = ((INT(20*.vresponse)-27)/100) SET VAR vresponse = (.vrate*5+1.4)
Should work every time. Regards, Stephen Markson ForenSys The Forensic Systems Group www.ForenSys.ca 416 512 6950 > -----Original Message----- > From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Claudine > Robbins > Sent: June 7, 2005 12:16 AM > To: RBG7-L Mailing List > Subject: [RBG7-L] - Rounding Puzzler > > > I know there is a brainiac out there who knows the answer. It eludes > me... > > I get numbers, such as 2.209; 2.170, etc... > > I need to round them to the next number which, after subtracting 1.40 is > evenly divisible by 5, i.e. 2.209 would round to 2.25 (vrate should be > .17). 2.170 correctly rounds to 2.20 (vrate is .16). > > This is what I have so far, but as you can see, it doesn't work > reliably: > > SET VAR VBASE = 1.40 > SET VAR VRESPONSE = 2.209 > SET VAR vmod = (MOD(.vresponse,.05)) > IF vmod > 0 THEN > SET VAR vresponse = (ROUND(.vresponse,1)) > ENDIF > SET VAR vrate = ((.vresponse - .vbase)/5) > Show var vrate yields .16 should be .17 > > With vresponse = 2.170, vrate is correctly .16 > > TIA, > > Claudine :)
