Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
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 |
#2
![]() |
|||
|
|||
![]() "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 |
#3
![]() |
|||
|
|||
![]()
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 |
#4
![]() |
|||
|
|||
![]()
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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I expand the amount of text I can put in a cell? | Excel Discussion (Misc queries) | |||
have cell display the word balance when a equals the same amount a | Excel Discussion (Misc queries) | |||
looking for a formula | Excel Worksheet Functions | |||
GET.CELL | Excel Worksheet Functions | |||
VLookup resulting in a blank cell... | Excel Worksheet Functions |