How do I calculate in a % (taxes)?

T

Treg

I recently made a recipt template and I was wondering how
I can get a tax total to show up? I just need to know
what formula (x 7.75%) to use to get the tax total to show
up so that it is added into the total? Thank you for your
time!
 
J

J.E. McGimpsey

One way:

A1: 10
A2: =A1 * 1.0775 ==> 10.775

or, perhaps,

A2: =ROUND(A1*1.0775,2) ==> 10.78
 
Top