Calculating Tax %

  • Thread starter Thread starter Amin
  • Start date Start date
A

Amin

hi i have an order form that i want to calculate a tax of 5% on all orders,
meaning any ordered goods will have a 5% tax charge on them how do i do it.
thanks
 
Hi,

Mike's suggestion is best but think of it this way

5%*$200 = $10
total = 200+10
so you could write it
=A1+5%*A1 or =A1+0.05*A1
 
Back
Top