Re: Send Value To Specific Cell
Providing you are only using figures:
Code
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("C1:G20")) Is Nothing Then 'change to suit
Range("A" & Target.Value).Value = Target.Row 'change to suit
End If
End Sub
the above code goes in the worksheet code module you are working with (Alt+F11, then double click the sheet name on your left and paste this in!