How do I run a macro when a value occurs in a cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to run a macro when a value appears in a cell.
How can this be accomplished?
 
Hi!

This is a trivial example but you can build on it:

Private Sub Worksheet_Change(ByVal Target As Range)
If Range("D3") = 36 Then
Range("D3").Interior.ColorIndex = 6
Else
Range("D3").Interior.ColorIndex = 2
End If
End Sub

Put =A3*3 in D3
Try values such as 12, 10 in A3

Al
 

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

Back
Top