Could anyone point to me the right direction to increase the digit at the Price Computation
New Price = Base Price *(1+ 0.0000 )+ 0.0000000
Rounding Method 0.0000000 Min. Margin 0.0000000 Max. Margin 0.0000000
Edited: This is what I'm trying to achieve.
Example: Using New Price = Base Price * ( 1 + -0.0654206) + 0.0000
If the selling price to customer is $1.00 New Price = $1.00 * 0.9345795 = $0.9345795 After 7% GST = $0.9345795 * 1.07 =$ 1.000000065
If the selling price to customer is $1000.00 New Price = $1000.00 * 0.9345795 = $934.5795 After 7% GST = $934.5795 * 1.07 =$ 1000.000065
-------------------------------------------- Above sample calculated correctly -----
Example: Using New Price = Base Price * ( 1 + -0.0654) + -0.0000205
If the selling price to customer is $1.00 New Price = $1.00 * 0.9346 - 0.0000205 = $0.9345795 After 7% GST = $0.9345795 * 1.07 =$ 1.000000065
If the selling price to customer is $1000.00 New Price = $1000.00 * 0.9346 - 0.0000205 = $934.5999795 After 7% GST = $934.5999795 * 1.07 =$ 1000.02197806
----------- if I do this way, the above calculation came out wrong ---------------
I would like to increase the digits in the bracket (1+ 0.0000000) into 7 decimal point instead of the current 4.
Where do I change this.
Thank you so much