vote up 1 vote down star

Hi All...

I have been trying to use a formula that is used to work out exclusive VAT in a program that our team is creating. The formula works correctly when used in a calculator or in excel, though gives a different output when used within a function in our program!

here is the function:

function fn_calcVat() 
{
    var vRate = Ext.getCmp('crd_vat_rate').getValue();
    var vTranAmt = Ext.getCmp('crd_tran_amt').getValue();

    if (vRate != '' && vTranAmt != '') 
    {
        alert(Ext.getCmp('vatable').getValue().toString());
        var vAmt = 0;
        if (Ext.getCmp('vatable').getValue().toString() == 'Y')
        {
            vAmt = (vRate / ((vTranAmt / 100) + 1));
            Ext.getCmp('crd_vat_amt').setValue(vAmt.toFixed(2));
            Ext.getCmp('crd_tran_tot').setValue(vTranAmt.toString());
            vAmt = 0;
        }
        else 
        {
            vAmt = ((vRate / 100) * vTranAmt);
            Ext.getCmp('crd_vat_amt').setValue(vAmt.toFixed(2));
            Ext.getCmp('crd_tran_tot').setValue((vTranAmt + vAmt));
            vAmt = 0;
        }                
    }
}

the problem formula is vAmt = (vRate / ((vTranAmt / 100) + 1));

The other formula is working perfectly.

an example input would be 100 with a VAT rate of 14.00, and the expected answer would be a tax amount of 14, though it gives it as 7!!!

We are using a mashup of EXTJS, js and C#...

Any help would be greatly appreciated.

Kind Regards

Nick

flag
What's the value of Ext.getCmp('vatable').getValue().toString()? – recursive Feb 2 at 14:57
Wait, isn't 14 / (100/100 + 1) = 7 correct? – Zach Scrivena Feb 2 at 14:59
It is either Y or N depending if it is vat inclusive or exclusive... – Nick Feb 2 at 15:00
@Zach: 7 is correct...he still has integer division problems though – sixlettervariables Feb 2 at 15:02
It's not integer division, if you fix the integer division it's still 7. The formula is incorrect – Binary Worrier Feb 2 at 15:09
show 3 more comments

7 Answers

vote up 3 vote down check

The formula is incorrect, it should be

vAmt = vTranAmt * (vRate / 100.0d);
link|flag
Thanks a million... that solved it! Still dunno why it works in excel though! – Nick Feb 2 at 15:10
You're welcome, I worked with retail software for years, it's amazing what you remember . . . – Binary Worrier Feb 2 at 15:11
This is the formula he had in his else case - what was the if case trying to do? – morechilli Feb 2 at 15:16
Can we also get a 100.0 in the house? Lets not enjoy integer division problems that may creep up depending on language. – sixlettervariables Feb 2 at 17:57
consider it done – Binary Worrier Feb 2 at 21:35
vote up 6 vote down

You're probably going to falling prey to integer division with the following code:

vAmt = (vRate / ((vTranAmt / 100) + 1));

You should change the formula to the following to avoid confusion:

vAmt = (vRate / ((vTranAmt / 100.0) + 1.0));

However, using the numbers you supplied, plugging in 100 for vTranAmt and 14 for vRate won't have a problem with integer division, but will give you 7:

vAmt = (14 / ((100 / 100) + 1))
     = (14 / ((1        ) + 1))
     = (14 / (2              ))
     = (7                     )

So either your formula is incorrect, or 7 is the correct answer.

link|flag
vote up 3 vote down

Two things come to mind. First, instead of using 'var', use a decimal or something specific. The reason for this is that the compiler will decide whether you meant integer division or decmial division based on the datatypes of the variables. If it picks integer, it may be doing some unexpected rounding on your behalf. Second thing is to make sure that the variable values are all being fetched correctly from those .getCmp() calls.

link|flag
vote up 1 vote down

Just to explain:

Formula:

vAmt = (vRate / ((vTranAmt / 100) + 1));

Parameters:

vRate = 14
vTranAmt = 100

Substitute:

vAmt = (14 / ((100 / 100) + 1));

Calculus:

vAmt = (14 / (1 + 1));

Calculus:

vAmt = (14 / (2));

Calculus:

vAmt = (14 / 2);

Calculus:

vAmt = (7);

So 7 is the expected answer.

But you can reqrite

vAmt = 100 * vRate / (vTranAmt + 100);

link|flag
vote up 1 vote down

Instead of:

vAmt = (vRate / ((vTranAmt / 100) + 1));

Try:

vAmt = vTranAmt * ((vRate/100));

Edit: oops... you just wanted the VAT not the total amount - vote for Binary's instead...

link|flag
vote up 0 vote down

I'm guessing that it's due to the difference between integers and floating point numbers.

Try it like this:

vAmt = (vRate / ((vTranAmt / 100.0) + 1.0));
link|flag
vote up 0 vote down

Are you sure the formula is the same in Excel and it works there? I'm not sure what exactly you're trying to do, but the you're dividing by vTranAmt, so the bigger this value, the smaller the result. That doesn't sound right, if the result is supposed to be some tax amount...

Edit: Most probably you have the vRate and vTranAmt variables switched.

link|flag
Yeah it works in Excel... – Nick Feb 2 at 15:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.