Here is another option fo ryou. If you want the cell you are double-clicking to say "Correct!" by double-clicking on it, try this:

- right-click on the sheet tab and select view code
- copy the following code to the VBA window:

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    Target = "Correct!"
End Sub
HTH,
Jason