Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi How do i add tick mark in excel sheet?i know its in symbol but i want to
prepare yes or no tick mark... |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
See this:
http://groups.google.com/group/micro...75653838?tvc=2 -- Biff Microsoft Excel MVP "Rohinikumar" wrote in message ... Hi How do i add tick mark in excel sheet?i know its in symbol but i want to prepare yes or no tick mark... |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hummmmmmm, not sure what you're doing, but try this:
Right-click the sheet where you want this; paste into the window that opens: Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Cancel = True If Not Intersect(Target, Range("A1:AZ100")) Is Nothing Then If Target = "P" Then Target = vbNullString ElseIf Target = vbNullString Then Target = "P" Else End If End If End Sub Format text as Wingdings 2!! Double-click any cell to add check marks. -- Ryan--- If this information was helpful, please indicate this by clicking ''Yes''. "Rohinikumar" wrote: Hi How do i add tick mark in excel sheet?i know its in symbol but i want to prepare yes or no tick mark... |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Private Sub Worksheet_BeforeDoubleClick(ByVal _
Target As Range, Cancel As Boolean) If Target.Cells.Count 1 Then Exit Sub With Target .Font.Name = "Marlett" .Font.Size = 12 .Value = "a" End With Cancel = True End Sub Right-click on the sheet tab and "View Code" Copy/paste the code into that sheet module. Gord Dibben MS Excel MVP On Mon, 4 Jan 2010 21:52:01 -0800, Rohinikumar wrote: Hi How do i add tick mark in excel sheet?i know its in symbol but i want to prepare yes or no tick mark... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
tick mark.! | Excel Discussion (Misc queries) | |||
Tick Mark Label | Charts and Charting in Excel | |||
not able to see tick mark label | Charts and Charting in Excel | |||
How can I add active tick mark/check mark boxes in excel? | Excel Discussion (Misc queries) | |||
tick mark labels | Charts and Charting in Excel |