right click sheet tab>view code>copy/paste this
As written, it works ONLY on column D
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 4 Then Exit Sub
Application.EnableEvents = False
Target = Target / 2
Application.EnableEvents = True
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"Jas" <(E-Mail Removed)> wrote in message
news:7E0BE0A2-56D0-4EAE-9EF8-(E-Mail Removed)...
> Hi. I would like to know if it is possible to get the input of a cell to
> automatically divide itself. So, if someone enters 4 in to A1, I would
> like
> it to be divided by 2 and show the value 2 in the same input sell (A1).
>
> Can this be done, and if it can, how?
>
> Thanks in advance
> Jas