I have a sheet that has plenty of data validation lists that are directly dependent on each other. So for example:
When I select a value from drop list in cell A2, it changes the list in cell A3 and thus changes the selected value on A3. This example is repeated over and over for different lists.
I am searching for a way to detect all the changes in those cells and write them (or their name in another column but same row) in another cell, just to tell the user what actually changed in the sheet. (we can also just change the color of the cells to reflect the change if that is easier)
The Worksheet_Change(ByVal Target As Range) doesn't seem to detect except the first change that happened in A2.
The question is quite generic but I can give an example if need. Any help is appreciated.