Is there a way I can tell which cell caused AfterRowUpdate to fire?
Thanks.
I think this could be several cells and also without any cell update. AfterRowUpdate does not mean that a cell data has been changed, but that the row data was committed to the data source. You can use AfterCellUpdate for that.
So, what you are saying is that the AfterRowUpdate only means that row data was committed to the data source, and if I wanted to know what cell, if any caused the update, trap AfterCellUpdate?
Then, AfterCellUpdate will always fire after AfterRowUpdate?