How do I run code when exiting a cell

G

Guest

I want to change the value of certain cells based on the input of another
cell. Looking at other posts, I came up with this code:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Count > 1 Then
Exit Sub
End If
If IsEmpty(Target) Then
Exit Sub
End If
If Target.Address = "$I$12" Then
Select Case Target.Value
Case "VHS"
Range("D27").Select
ActiveCell.FormulaR1C1 = "N/A"
Case "VSS"
Range("F28").Select
ActiveCell.FormulaR1C1 = "N/A"
End Select
End If


The problem is: This code runs when the cell is selected. I need it to run
after the cell is edited, on exit of the cell (another cell selected...).

Please help!
 
G

Guest

Oh wow, I missed that one! I could make up a million excuses... Bottom line,
your help was greatly appreciated.

thank you very much!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top