Let's answer it with mathematical approach. You might required to use it in the formula or in VBA. This simplification will help you for sure.
Assume few variables
X = Product's Original Amount without Tax
Y = Inclusive Tax Amount (i.e. you're looking)
Z = Product's Amount with Tax or MRP or Included tax amount.
Q = Tax %
-
So basic foundation of product's final amount after tax including is like,
X + Y = Z
Now, Y = ( Q * X ) / 100
So the equation become,
X + ( Q * X ) / 100 = Z
Now solve the above equation to find the value of X
X = ( Z * 100 ) / ( Q + 100 )
And to get the value you required put this value of X back to the initial equation
X + Y = Z
{( Z * 100 ) / ( Q + 100 )} + Y = Z
Now solve for Y,
Y = ( Z * Q ) / ( Q + 100 )
So put known values of Z & Q in the above equation and you will get the required value.
Good day.
Kamal Bharakhda
No comments:
Post a Comment