You should edit this block of the script:
numeric input var WTax
{
WTax = Round2( TaxOnBracket + TaxOnExcess );
}
Insert this statement:
if( TaxableRegPay < [PUT THE MINIMUM WAGE AMOUNT HERE] )
WTax = 0;
Resulting in this block of the script:
numeric input var WTax
{
WTax = Round2( TaxOnBracket + TaxOnExcess );
if( TaxableRegPay < [PUT THE MINIMUM WAGE AMOUNT HERE] )
WTax = 0;
}
I hope this helps. |