I have a worksheet (user data entry form type) in which I'm trying to catch individual changes in certain cells so that another worksheet holding the entire data table can be updated with those changes. Each of these cells require different changes so I have a Select Case catching which cell is being changed and running the appropriate code.
However, currently, If a user was to Ctrl-Click multiple cells and then Clear Content those cells, the Worksheet_Change event only catches the change for the highlighted cell. The other cells that also had their content cleared are not caught and the corresponding changes for the data table are not made.
How do I start the Worksheet_Change event Sub so that the first thing it does is test to see if multiple cells were selected, and then cancel / undo the change / msgbox the user to select only one cell?
However, currently, If a user was to Ctrl-Click multiple cells and then Clear Content those cells, the Worksheet_Change event only catches the change for the highlighted cell. The other cells that also had their content cleared are not caught and the corresponding changes for the data table are not made.
How do I start the Worksheet_Change event Sub so that the first thing it does is test to see if multiple cells were selected, and then cancel / undo the change / msgbox the user to select only one cell?