Is there a way to configure a cell so when I click on it a check .

R

RagDyer

How much should I make the check out for?

$100.00 enough?

How about using the body of the post for the message?
--


Regards,

RD
 
J

Jason Morin

Right-click on the worksheet tab, View Code, and paste in
the code below:

Private Sub Worksheet_SelectionChange(ByVal Target As
Excel.Range)
If Not Intersect(Target, Range("A1")) Is Nothing Then
With Target
.Value = Chr(252)
.Font.Name = "Wingdings"
End With
End If
End Sub

--
Change A1 to the desired cell.

HTH
Jason
Atlanta, GA
 
Top