Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Many thanks for your help. The solution works a treat.
regards Tiny "Gord Dibben" wrote: Format the cells to Marlett font then enter an "a" in the cell to see a tick. You could do it with a doubleclick event if you wished. Private Sub Worksheet_BeforeDoubleClick(ByVal _ Target As Range, Cancel As Boolean) If Target.Cells.Count 1 Then Exit Sub If Intersect(Target, Me.Range("B1:B20")) Is Nothing Then Exit Sub On Error GoTo CleanUp Application.EnableEvents = False With Target .Font.Name = "Marlett" .Value = "a" End With Cancel = True CleanUp: Application.EnableEvents = True End Sub This is sheet event code. Right-click on the sheet tab and "View Code". Copy/paste into that sheet module. As written works on any cell in range B1:B20 Gord Dibben MS Excel MVP On Fri, 19 Oct 2007 10:49:01 -0700, tiny wrote: Hi How do I place a tick symbol in an excel box signifying acceptance of the conditions. This is used in a spread sheet check list It is an English symbol. In USA terminology it may be called a check I would apreciate any advice given regards tiny |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I add up letters or symbols in excel | Excel Worksheet Functions | |||
Excel Symbols | Excel Discussion (Misc queries) | |||
excel symbols | Excel Worksheet Functions | |||
inserting symbols not available in excel | Excel Discussion (Misc queries) | |||
Symbols in Excel | Excel Discussion (Misc queries) |