Well I have browsed through Application events in Excel 2007 however I can’t find any event generated on a cell click.
I can’t use a double click event at the moment due to application constraints.
Is there a way I can create a custom click event and attach it to a sheet for generating a cell click event.
Well I have browsed through Application events in Excel 2007 however I can’t find
Share
You should be able to capture that through the Worksheet.SelectionChange event, as illustrated in the snippet below. If you are interested in single cells, you may have to make sure that the range is a single cell.