Hi,
You will need VBA, formulas can not do that.
Here is an example of event code using the Intersect function:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Isect As Range
Set Isect = Application.Intersect(Target, [A1])
If Not Isect Is Nothing Then
Range("B109").Select
End If
End Sub
Here a number is being entered into A1 and then it is added to the entry in
B1 and then A1 is cleared.
1. To add this code to your file, press Alt+F11,
2. In the VBAProject window, top left side, find your sheet name under your
file name and double click it.
3. Paste in or type the code above.
If this helps, please click the Yes button
Cheers,
Shane Devenshire