Hi
not that advanced
As a starting point for further information have a look at
http://www.cpearson.com/excel/events.htm
For your example put the following code in your worksheet module (not
in a standard module). To get into the worksheet module right-click on
the tab name and choose 'Code'
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Intersect(Target, Me.Range("A1")) Is Nothing Then Exit Sub
On Error GoTo CleanUp
application.enableevents = false
With Target
If .Value <> "" Then
.value = .value * 5
End If
End With
CleanUp:
Application.EnableEvents = True
End Sub
--
Regards
Frank Kabel
Frankfurt, Germany
Depends on how advanced. I have done research and coding
in Access, so it won't be completely foreign.
Thanks
-----Original Message-----
Hi
this is only possible with VBA using an event procedure. Is this a
possible solution for you?
--
Regards
Frank Kabel
Frankfurt, Germany
Is it possible to enter a value in a cell and have a
calculation performed based on the entered value, within
that same cell?
ex.
A1 = [Enter the value] * 5
.