I have defined a Worksheet_Change sub on a sheet. It works fine.
I just noticed that this is only triggered when the users inputs a value in a cell. When I calculate the sheet, and some cells change values, I’d like it to be called as well, which isn’t the case at the moment.
What would you suggest ?
One quick way to fix this is to simply add the same event under
Worksheet_Calculateevent. If the routine is large, extract it into it’s own sub and simply call it for both events.