473,387 Members | 1,549 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Help with Fix function

Ted
I've written a little function to remove everything after the 2nd decimal
place for prices which is as follows: -

ReturnConvertedCurrency = (fix(iSterling * session("ExchangeRate") *
100) / 100)

However, it sometimes returns incorrect values. i.e. Why does the
following: -

response.write(FormatNumber((fix(2.30 * 1 * 100) / 100) , 2))

or

response.write(FormatNumber((int(2.30 * 1 * 100) / 100) , 2))

return 2.29 ?

Any help would be greatly appreciated as I've been ripping my hair out for a
few hours trying to solve this one.

Ted.
Jul 19 '05 #1
7 2493
I didn't know this existed in Fix as well.
http://www.aspfaq.com/2477

Don't know why you need fix or int here though. These work fine for me:

response.write(FormatNumber((2.30 * 100)/100.0, 2))
response.write(FormatPercent((2.30)/100.0, 2))

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Ted" <sp**@spam.com> wrote in message
news:Og**************@TK2MSFTNGP12.phx.gbl...
I've written a little function to remove everything after the 2nd decimal
place for prices which is as follows: -

ReturnConvertedCurrency = (fix(iSterling * session("ExchangeRate") * 100) / 100)

However, it sometimes returns incorrect values. i.e. Why does the
following: -

response.write(FormatNumber((fix(2.30 * 1 * 100) / 100) , 2))

or

response.write(FormatNumber((int(2.30 * 1 * 100) / 100) , 2))

return 2.29 ?

Any help would be greatly appreciated as I've been ripping my hair out for a few hours trying to solve this one.

Ted.

Jul 19 '05 #2
Ted
> Don't know why you need fix or int here though. These work fine for me:

response.write(FormatNumber((2.30 * 100)/100.0, 2))
response.write(FormatPercent((2.30)/100.0, 2))
The reason I am using fix() is so: -

response.write(FormatNumber((fix(2.309 * 1 * 100) / 100) , 2))

will result in 2.30

Maybe I'm goint to have to re-think my appraoch to this problem.

As it's an eCommerce site I'm putting together, I need the maths to add up
precisely on the basket screen etc. I have got some functions that will
inevitably return pesky floats (adding 17.5% tax, currency conversions etc).

What I was doing was chopping off everthing after the second decimal place
in all of my calculations using the function I mentioned. This, until now,
had worked OK and all the totals had added up. Until I got the dreaded 2.30
resulting in 2.29.

Any ideas how I should tackle this problem?

Thanks for the reply,

Ted.
I've written a little function to remove everything after the 2nd decimal place for prices which is as follows: -

ReturnConvertedCurrency = (fix(iSterling *

session("ExchangeRate") *
100) / 100)

However, it sometimes returns incorrect values. i.e. Why does the
following: -

response.write(FormatNumber((fix(2.30 * 1 * 100) / 100) , 2))

or

response.write(FormatNumber((int(2.30 * 1 * 100) / 100) , 2))

return 2.29 ?

Any help would be greatly appreciated as I've been ripping my hair out
for a
few hours trying to solve this one.

Ted.


Jul 19 '05 #3
Is it really correct to just truncate digits instead of rounding? I would
think that, especially for an e-commerce site, you would be more interested
in being correct than using fix().

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Ted" <sp**@spam.com> wrote in message
news:uU**************@TK2MSFTNGP12.phx.gbl...
Don't know why you need fix or int here though. These work fine for me:

response.write(FormatNumber((2.30 * 100)/100.0, 2))
response.write(FormatPercent((2.30)/100.0, 2))
The reason I am using fix() is so: -

response.write(FormatNumber((fix(2.309 * 1 * 100) / 100) , 2))

will result in 2.30

Maybe I'm goint to have to re-think my appraoch to this problem.

As it's an eCommerce site I'm putting together, I need the maths to add up
precisely on the basket screen etc. I have got some functions that will
inevitably return pesky floats (adding 17.5% tax, currency conversions

etc).
What I was doing was chopping off everthing after the second decimal place
in all of my calculations using the function I mentioned. This, until now,
had worked OK and all the totals had added up. Until I got the dreaded 2.30 resulting in 2.29.

Any ideas how I should tackle this problem?

Thanks for the reply,

Ted.
I've written a little function to remove everything after the 2nd decimal place for prices which is as follows: -

ReturnConvertedCurrency = (fix(iSterling *

session("ExchangeRate")
*
100) / 100)

However, it sometimes returns incorrect values. i.e. Why does the
following: -

response.write(FormatNumber((fix(2.30 * 1 * 100) / 100) , 2))

or

response.write(FormatNumber((int(2.30 * 1 * 100) / 100) , 2))

return 2.29 ?

Any help would be greatly appreciated as I've been ripping my hair out

for
a
few hours trying to solve this one.

Ted.



Jul 19 '05 #4
Ted
If I use currency formats then there may be descrepancies when totaling the
basket (amongst other things)

i.e. after adding VAT or coverting a currency item values might end up
like: -

£3.0090
£5.1070

which appear to the user as: -

£3.01
£5.11

but totals as: -

£8.13

Problems also occur when bankers rounding is introduced. I just want
everything to be predictable. Any suggestions for the best way to achieve
this?

Regards,

Ted.

Is it really correct to just truncate digits instead of rounding? I would
think that, especially for an e-commerce site, you would be more interested in being correct than using fix().

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Ted" <sp**@spam.com> wrote in message
news:uU**************@TK2MSFTNGP12.phx.gbl...
Don't know why you need fix or int here though. These work fine for me:
response.write(FormatNumber((2.30 * 100)/100.0, 2))
response.write(FormatPercent((2.30)/100.0, 2))


The reason I am using fix() is so: -

response.write(FormatNumber((fix(2.309 * 1 * 100) / 100) , 2))

will result in 2.30

Maybe I'm goint to have to re-think my appraoch to this problem.

As it's an eCommerce site I'm putting together, I need the maths to add up precisely on the basket screen etc. I have got some functions that will
inevitably return pesky floats (adding 17.5% tax, currency conversions

etc).

What I was doing was chopping off everthing after the second decimal place in all of my calculations using the function I mentioned. This, until now, had worked OK and all the totals had added up. Until I got the dreaded

2.30
resulting in 2.29.

Any ideas how I should tackle this problem?

Thanks for the reply,

Ted.
> I've written a little function to remove everything after the 2nd

decimal
> place for prices which is as follows: -
>
> ReturnConvertedCurrency = (fix(iSterling *

session("ExchangeRate")
*
> 100) / 100)
>
> However, it sometimes returns incorrect values. i.e. Why does the
> following: -
>
> response.write(FormatNumber((fix(2.30 * 1 * 100) / 100) , 2)) >
> or
>
> response.write(FormatNumber((int(2.30 * 1 * 100) / 100) , 2)) >
> return 2.29 ?
>
> Any help would be greatly appreciated as I've been ripping my hair
out for
a
> few hours trying to solve this one.
>
> Ted.
>
>



Jul 19 '05 #5
> i.e. after adding VAT or coverting a currency item values might end up
like: -

£3.0090
£5.1070

which appear to the user as: -

£3.01
£5.11

but totals as: -

£8.13

Problems also occur when bankers rounding is introduced. I just want
everything to be predictable. Any suggestions for the best way to achieve
this?


Yes. Round each product to the nearest penny, instead of adding products
together at fractions of pennies (introducing the possibility of rounding
down by mistake). In the above example, you should be adding 3.01 and 5.11
and getting 8.12. Why would you carry forward 3.0090? If they only bought
one product, would you charge them 3.0090? Of course not.

A better "fix" function isn't going to fix your problem, if you'll pardon
the pun.
Jul 19 '05 #6
Hi Ted,

I don't understand why you said total is 0.13.

0.0090+0.1070=0.1160
0.01+0.11=0.12

It cannot be 0.13.

Luke

Jul 19 '05 #7
I definitely understand that certain operations used on an ecommerce site
will give pesky floats, as you mentioned:

As it's an eCommerce site I'm putting together, I need the maths to add up
precisely on the basket screen etc. I have got some functions that will
inevitably return pesky floats (adding 17.5% tax, currency conversions etc).

But rather than change your formatting and rounding techniques, I would
suggest adding the total in whatever currency the prices were originally
given in, and then multiplying that total by the exchange rate and tax
percentages. That way, you will not need to worry about adding fractions of
a cent (or whatever currency is being used); you can simply round or
concatenate the decimal places one time for the total rather doing it for
every item. Example (my conversion & tax factors may be wrong here):

Cost Conv Tax
£15.99 * 1.76 * 17.5% = 33.06732 = 33.06
£10.50 * 1.76 * 17.5% = 21.714 = 21.71
£ 8.27 * 1.76 * 17.5% = 17.10236 = 17.10
71.88368 = 71.88 (This is of by
..01)

OR

Cost Conv Tax
£15.99
£10.50
£ 8.27
£34.76 * 1.76 * 17.5% = 71.88368 = 71.88 (This does not show any unexpected
decimals)

If only some items are taxed, you may need to add up the taxable and
non-taxable items separately, but otherwise the same. You may want to
display the operations differently on the site, and I am not experienced in
economics or finance, but I usually see tax and conversions done at the end,
which I believe makes it simpler for both the user and in the code. Just a
suggestion.
--
Nathan Sokalski
nj********@hotmail.com
www.nathansokalski.com

"Ted" <sp**@spam.com> wrote in message
news:uU**************@TK2MSFTNGP12.phx.gbl...
Don't know why you need fix or int here though. These work fine for me:

response.write(FormatNumber((2.30 * 100)/100.0, 2))
response.write(FormatPercent((2.30)/100.0, 2))
The reason I am using fix() is so: -

response.write(FormatNumber((fix(2.309 * 1 * 100) / 100) , 2))

will result in 2.30

Maybe I'm goint to have to re-think my appraoch to this problem.

As it's an eCommerce site I'm putting together, I need the maths to add up
precisely on the basket screen etc. I have got some functions that will
inevitably return pesky floats (adding 17.5% tax, currency conversions

etc).
What I was doing was chopping off everthing after the second decimal place
in all of my calculations using the function I mentioned. This, until now,
had worked OK and all the totals had added up. Until I got the dreaded 2.30 resulting in 2.29.

Any ideas how I should tackle this problem?

Thanks for the reply,

Ted.
I've written a little function to remove everything after the 2nd decimal place for prices which is as follows: -

ReturnConvertedCurrency = (fix(iSterling *

session("ExchangeRate")
*
100) / 100)

However, it sometimes returns incorrect values. i.e. Why does the
following: -

response.write(FormatNumber((fix(2.30 * 1 * 100) / 100) , 2))

or

response.write(FormatNumber((int(2.30 * 1 * 100) / 100) , 2))

return 2.29 ?

Any help would be greatly appreciated as I've been ripping my hair out

for
a
few hours trying to solve this one.

Ted.



Jul 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Alan Bashy | last post by:
Please, guys, In need help with this. It is due in the next week. Please, help me to implement the functions in this programm especially the first three constructor. I need them guys. Please, help...
2
by: Jackson Yap | last post by:
can someone kind enough to help me look at the attached html and js file? Why is it that the javascript menu could not work at www.apchosting.net but could work at...
5
by: Craig Keightley | last post by:
Please help, i have attached my page which worksin IE but i cannnot get the drop down menu to fucntion in firefox. Any one have any ideas why? Many Thanks Craig ...
6
by: James Radke | last post by:
Hello, I have a multithreaded windows NT service application (vb.net 2003) that I am working on (my first one), which reads a message queue and creates multiple threads to perform the processing...
1
by: Michael D. Reed | last post by:
I am using the help class to display a simple help file. I generated the help file using Word and saving it as a single page Web page (.mht extension). I show the help file with the following...
1
by: Rahul | last post by:
Hi Everybody I have some problem in my script. please help me. This is script file. I have one *.inq file. I want run this script in XML files. But this script errors shows . If u want i am...
0
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted...
4
by: Stef Mientki | last post by:
I'm making special versions of existing functions, and now I want the help-text of the newly created function to exists of 1. an extra line from my new function 2. all the help text from the old...
22
by: Amali | last post by:
I'm newdie in c programming. this is my first project in programming. I have to write a program for a airline reservation. this is what i have done yet. but when it runs it shows the number of...
1
by: Bob | last post by:
Hi, Hope you can help me with this one. I'm at my wits end. I'm trying to create an intelligent edit-box like the excellent "Customer" one at the URL: ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.