Okay, I did read over that quickly; however, just so you know, I responded
to you based on the response the OP gave me when I asked him which cells he
wanted this functionality for... he responded any cell, so there would not
be an "out of the range" cell available.
--
Rick (MVP - Excel)
"Jacob Skaria" <(E-Mail Removed)> wrote in message
news

7F8B998-A172-4F8E-AA56-(E-Mail Removed)...
> Its worth reading the comment again..
>
> "Try single click on any of the cells in that range. To remove the check
> mark
> click on another cell **** out of the range **** and again click on the
> cell."
>
> --
> If this post helps click Yes
> ---------------
> Jacob Skaria
>
>
> "Rick Rothstein" wrote:
>
>> The problem with doing it this way is when he clicks on the "other cell",
>> that cell will have its check mark flipped. The problem? The OP just
>> loads
>> the workbook and wants to change one cell, save it and close the
>> workbook...
>> how does he correct a mistaken entry in this situation?
>>
>> --
>> Rick (MVP - Excel)
>>
>>
>> "Jacob Skaria" <(E-Mail Removed)> wrote in message
>> news:E0BDBC46-B2CA-413F-BA26-(E-Mail Removed)...
>> > Dear George
>> >
>> > Try this which should work with Single click on any range.
>> >
>> > 1. In the required range (suppose ColD) in all cells enter small letter
>> > "e".
>> > 2. Select all cells in that range and change the font to Marlett.
>> > 3. Adjust the column width to look like a square check box
>> > 4. Right click on the sheet tab and hit view code. Paste the below code
>> >
>> > Private Sub Worksheet_SelectionChange(ByVal Target As Range)
>> > If Target.Font.Name = "Marlett" And _
>> > Target.CountLarge = 1 Then
>> > Target.Value = IIf(Target.Value = "r", "e", "r")
>> > End If
>> > End Sub
>> >
>> > Try single click on any of the cells in that range. To remove the check
>> > mark
>> > click on another cell out of the range and again click on the cell.
>> >
>> > If this post helps click Yes
>> > ---------------
>> > Jacob Skaria
>> >
>> >
>> > "George" wrote:
>> >
>> >> Can I create a method that when you click on a cell it will
>> >> enter a Check Mark or an X ?
>>
>>