I have a VBA macro that validates user entered data (I didn’t use data validation/conditional formatting on purpose).
I am using Worksheet_Change event to trigger the code, the problem I am facing now is, when there are row changes. I don’t know whether it is a deleting / inserting rows.
Is there anyway to distinguish between those two?
You could define a range name such as
RowMarker =$A$1000Then this code on your change event will store the position of this marker against it’s prior position, and report any change (then stores the new position)