Is there way to stop row updation event called after cell updation event?
Thanks in advance,
Parv
Does that work for you?
Parv,
Yes, you can cancel the BeforeRowUpdate event after the AfterCellUpdate event has taken place. Handle the BeforeRowUpdate event and include the line
e.Cancel = true;
Let me know if that works for you.