Our application is an excel plugin. Since most of it is handled from VBA, we want to fetch the user changes in the cells(values and addresses) programmatically through VBA itself and send those values to backend on a button click.
We have already tried Worksheet_change event but it is called multiple times so it is not feasible for us and comparing the old dataset with a newer would take too much time. So is there any efficient and simple way to achieve this ?