I want to add 6% sales tax to the amount in a cell/column

B

Bobb1220

I have a small spread sheet that I use and 1 of the columns is used to enter
the amount paid for an item I would like to add 6% sales tax automaticly to
the amount I enter

Thanks

Bob
 
F

Fredrik Wahlgren

Bobb1220 said:
I have a small spread sheet that I use and 1 of the columns is used to enter
the amount paid for an item I would like to add 6% sales tax automaticly to
the amount I enter

Thanks

Bob

Assuming your data is in A1, enter =A1*1.06 in some other column.
/Fredrik
 
B

Bob Phillips

For clarity, I would use

=A1*(1+6%)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
J

Jim May

In your Worksheet's module paste in:

Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo ws_err
Application.EnableEvents = False
If Not Intersect(Target, Range("D5:G10")) Is Nothing Then '<<<Chg to
your cell Range
Target.Value = Target.Value * 1.06
End If
ws_err:
Application.EnableEvents = True
End Sub

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

IF statement help needed 3
Calcuate Totals 1
Income Tax 8
Calculate sales tax 3
If isna match function??? 2
Compute Tax? 0
Formula to Net and add tax 2
Sales tax VAT 5

Top