hi,
is it somehow possible to create a checkmark if a cell is double-clicked?
On double-click ----> ?
??
Sure it is. Paste the following into the worksheet's code pane for the sheet
where you want this to occur. Note that for this sheet you will no longer
be able to edit directly in the cell as a double click will simply enter the
checkmark. (Watch the line wrap when you paste the code)
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Excel.Range, Cancel
As Boolean)
Target = Chr(195)
Cancel = True
End Sub