Sounds like you'd have to use some type or VB script, such as the
Worksheet_Change event. An example:
Private Sub Worksheet_Change(ByVal Target As Range)
'Did the user change cell A1?
If Intersect(Target, Range("A1")) Is Nothing Then Exit Sub
Application.EnableEvents = False
'Do stuff here
'Clear cell contents
Range("A2").ClearContents
'Or, give the cell a formula
Range("A2").Formula = "=SUM(B1:B2)"
Application.EnableEvents = True
End Sub
--
Best Regards,
Luke M
"TheDrescher" <(E-Mail Removed)> wrote in message
news:654C5CE0-DBD6-4A3B-8863-(E-Mail Removed)...
>I don't know if this is possible to do, but I figured I'd ask. I have a
> workbook where the first worksheet populates data on employees based on
> their
> name selected from a drop down cell. All of the data populates fine here.
> There is one cell that is a subjective rating decided upon by managers
> (Coaching Score). I run into an issue where the value selected in the
> Coaching Score cell remains the same when you switch between employees.
> Is
> there any way to have this cell reset to a default value every time you
> switch employees on the front sheet? I've tried some formulas, but every
> time you select a rating in the Coaching Score cell, it replaces the
> fomula
> with the value selected. Is there any way I can fix this? Thanks!
>
|