Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can someone tell me the VBA code that will place a check mark in a cell.
I need the code so that when I place any character in a specified range, that the value will change to a check mark when I leave that cell. Please Help!! Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Not Intersect(Target, Me.Range("A1:A10")) Is Nothing Then If Target.Count 1 Then Exit Sub Application.EnableEvents = False With Target .Value = Chr(252) .Font.Name = "WingDings" End With Application.EnableEvents = True End If End Sub This is event code. Right-click on the sheet tab and "View Code". Copy and paste into that module. Adjust the range to suit. Gord Dibben MS Excel MVP On Wed, 18 Oct 2006 18:01:01 -0700, aftamath wrote: Can someone tell me the VBA code that will place a check mark in a cell. I need the code so that when I place any character in a specified range, that the value will change to a check mark when I leave that cell. Please Help!! Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do you create a check mark in Excel? | Excel Discussion (Misc queries) | |||
using checkmark symbol shows only # not check mark Excel 2003 | New Users to Excel | |||
Check Mark Symbol | Excel Discussion (Misc queries) | |||
Check Mark | Excel Discussion (Misc queries) | |||
How do I get a field in excel to auto complete with a check mark | Excel Discussion (Misc queries) |