worksheet change event not working

  • Thread starter Thread starter Jase
  • Start date Start date
J

Jase

I am using a worksheet change event, on my sheet i have a cell that is linked
externally to a sheet that constantly is changing my cell that is linked.
However it is not activating my worksheet change macro. Why is thi sand what
can I do to fix this problem?
 
hi
not sure but i think links work the same way as formulas work and the
recalculation of formulas does no trigger the worksheet change event. you
might try putting your macro in the worksheet calculate event so that when
the sheet recalculates, the macro will fire.

Regards
FSt1
 
The Worksheet_Change event will fire when someone types a new entry into that
cell.

Maybe you can use the worksheet_calculate event instead??
 
Back
Top