A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
When exiting from that userform, I'd like to have that same cell 'selected', but as the equivalent of a single click (whole cell selected, dark border, cursor is not active in the cell). Due to the DoubleClick functionality, I end up with the cursor in the cell itself.
Assuming the UserForm's code does not select a different cell as part of its functionality, simply put this statement...
Cancel = True
inside the BeforeDoubleClick event code prior to exiting it (you can put it as the first line of code if you want).