ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   I want to add 6% sales tax to the amount in a cell/column (https://www.excelbanter.com/excel-discussion-misc-queries/17110-i-want-add-6%25-sales-tax-amount-cell-column.html)

Bobb1220

I want to add 6% sales tax to the amount in a cell/column
 
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

Fredrik Wahlgren


"Bobb1220" wrote in message
...
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



Bob Phillips

For clarity, I would use

=A1*(1+6%)

--

HTH

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


"Fredrik Wahlgren" wrote in message
...

"Bobb1220" wrote in message
...
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





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

"Fredrik Wahlgren" wrote in message
...

"Bobb1220" wrote in message
...
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






All times are GMT +1. The time now is 08:20 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com