Run macro automatically

Solved/Closed
mkg - Apr 22, 2009 at 01:15 AM
 Guest - Dec 8, 2016 at 07:02 AM
Hello,
I wrote a macro and I want to run it automatically if one special cell change but have problem, because contents cell change by formula in other cell and user must not change any cell, therefore result of formula change in cell but macro not run?!
Thanks

2 responses

mubashir aziz Posts 190 Registration date Sunday April 12, 2009 Status Member Last seen February 16, 2010 165
Apr 22, 2009 at 01:42 AM
Try to run the macro as below

copy your code here and you can select it from VBA windows by selecting desired Sheet then on right side window from drop down menu select Worksheet instead of General and from other drop down select Calculate


Private Sub Worksheet_Calculate(ByVal Target As Range)


End Sub
5
It would be nice if a real example was shown so people new to this could see how it actually works
0
Rename your macro to auto_open
0
Thank you Saint - hours of frustration resolved with a most simple solution!
0