Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hello Is there any way to have excel 2000 automatically enter the new amount
in same cell of what i type plus GST of 10 %. e.g I type 10.46 in to cell and when I push enter excel replaces it with 11.506 Many thanks |
#2
![]() |
|||
|
|||
![]()
Something like
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 3 Then ' onl;y column C Application.EnableEvents = False Target = Target * 1.1 Application.EnableEvents = True End If End Sub |
#3
![]() |
|||
|
|||
![]()
You could using a worksheet_change() event like so (This works in column A).
To implement go to http://www.nickhodge.co.uk/vba/vbaim....htm#EventCode Private Sub Worksheet_Change(ByVal Target As Range) With Application If Not .Intersect(Target, Columns("A:A")) Is Nothing Then ..EnableEvents = False Target.Value = Target.Value * 1.1 ..EnableEvents = True End If End With End Sub -- HTH Nick Hodge Microsoft MVP - Excel Southampton, England HIS "cjrolls" wrote in message ... Hello Is there any way to have excel 2000 automatically enter the new amount in same cell of what i type plus GST of 10 %. e.g I type 10.46 in to cell and when I push enter excel replaces it with 11.506 Many thanks |
#4
![]() |
|||
|
|||
![]()
You have already received possible solutions to your question. Since I
am not a big fan of (a)VBA when a non-VBA solution works, (b) automated changes to user data entry, and (c) especially those made without any audit trail, here's a non-VBA solution. Suppose the person enters data in column A. Then, in column B2 enter the formula =A2*1.1 and label column B as 'Price with GST' -- Regards, Tushar Mehta www.tushar-mehta.com Multi-disciplinary business expertise + Technology skills = Optimal solution to your business problem Recipient Microsoft MVP award 2000-2005 In article , says... Hello Is there any way to have excel 2000 automatically enter the new amount in same cell of what i type plus GST of 10 %. e.g I type 10.46 in to cell and when I push enter excel replaces it with 11.506 Many thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copying a cell to another cell automatically | New Users to Excel | |||
automatically insert system time in a cell | Excel Discussion (Misc queries) | |||
prevent 4/5 in a cell automatically transfer to a date format | Excel Discussion (Misc queries) | |||
GET.CELL | Excel Worksheet Functions | |||
How to change (delivery) days and automatically the receive date in an other cell? | Excel Worksheet Functions |