I think I have a fairly reasonable/standard ask and the methods I've tried thus far have proved unsuccessful.
I'm running Excel 2013 32-Bit and in Sheet 6 in Cell J7 I have a third-party formula that changes every so often. Basically I'd like to call a macro every time that cell value changes.
Keeping in mind that this cell is a formula (I've played around with changing this third party formula to a straightforward formula such as A1+B1 and it hasn't changed the behaviour).
Basically Excel does not call my macro and recognize the change in this cell unless I manually type over the formula or press F2 in the Excel cell and hit Enter or if I click into the Formula box and press enter (all steps require a user click).
Here are the methods I've tried (all are a variation of Worksheet Change or Worksheet Calculation). If there is something glaring I'm missing or a method I have not tried please advise, thanks.
https://www.extendoffice.com/documents/excel/4423-excel-run-macro-on-cell-change.html
http://www.dbforums.com/showthread.php?1661517-Execute-Macros-From-Formulas-(Or-Cell-Value)
How can I run a VBA code each time a cell get is value changed by a formula?
http://www.ozgrid.com/forum/showthread.php?t=144429
Run VBA Script When Cell Value Change by Formula
VBA code doesn't run when cell is changed by a formula
third-party formula
? – PlagonCell
to theCell
with the Formula? If that ones updating it could trigger theWorksheet_Calculate
Event – Plagon