I am trying to create a sheet where our employees can click on a cell to highlight it notating they are working of the task, and then click it again when they are finished w
Add a BeforeDoubleClick event with this code in the same sheet:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Cancel = True Worksheet_SelectionChange Target End Sub