Automatic execution of a macro with a function cell

N

News

Hello all,

I would like execute a macro when a cell value change
The problem : the target cell have a function and the macro doesn't execute
automatic

This is my code :

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = Range("G12").Address Then
Call Macro3
End If
End Sub

Thanks for your help
Olivier
 

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