#1   Report Post  
Posted to microsoft.public.excel.misc
Anthony Viscomi
 
Posts: n/a
Default Check Mark

I would like to place a "check mark" in a cell, but I'm not sure how to
accomplish this. Can anyone help?

Thanks in advance!
Anthony


  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Check Mark

Set the cell's font to Marlett, then use the character a.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Anthony Viscomi" wrote in message
...
I would like to place a "check mark" in a cell, but I'm not sure how to
accomplish this. Can anyone help?

Thanks in advance!
Anthony




  #3   Report Post  
Posted to microsoft.public.excel.misc
Anthony Viscomi
 
Posts: n/a
Default Check Mark

Actually, I was looking to place a "check box" within a cell. Is this
possible?
"Bob Phillips" wrote in message
...
Set the cell's font to Marlett, then use the character a.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Anthony Viscomi" wrote in message
...
I would like to place a "check mark" in a cell, but I'm not sure how to
accomplish this. Can anyone help?

Thanks in advance!
Anthony






  #4   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Check Mark

Checkboxes are separate to a cell, being objects just as the sheet is an
object. They can be linked to cells, and they can be aligned somewhat to
cells. Try using the cells on the Forms toolbar.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Anthony Viscomi" wrote in message
...
Actually, I was looking to place a "check box" within a cell. Is this
possible?
"Bob Phillips" wrote in message
...
Set the cell's font to Marlett, then use the character a.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Anthony Viscomi" wrote in message
...
I would like to place a "check mark" in a cell, but I'm not sure how to
accomplish this. Can anyone help?

Thanks in advance!
Anthony








  #5   Report Post  
Posted to microsoft.public.excel.misc
Anthony Viscomi
 
Posts: n/a
Default Check Mark

Works great, Thanks!
"Bob Phillips" wrote in message
...
Checkboxes are separate to a cell, being objects just as the sheet is an
object. They can be linked to cells, and they can be aligned somewhat to
cells. Try using the cells on the Forms toolbar.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Anthony Viscomi" wrote in message
...
Actually, I was looking to place a "check box" within a cell. Is this
possible?
"Bob Phillips" wrote in message
...
Set the cell's font to Marlett, then use the character a.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Anthony Viscomi" wrote in message
...
I would like to place a "check mark" in a cell, but I'm not sure how
to
accomplish this. Can anyone help?

Thanks in advance!
Anthony












  #6   Report Post  
Posted to microsoft.public.excel.misc
Roger Govier
 
Posts: n/a
Default Check Mark

Hi Anthony

The following code will place a series of checkboxes alongside values in
another column, in Column G in this example.

Sub CreateCheckBoxes()
On Error Resume Next
Dim c As Range, myRange As Range, lastcell As Long
If Application.ScreenUpdating = True Then Application.ScreenUpdating
= False
lastcell = Cells(Rows.Count, 6).End(xlUp).Row
Set myRange = Range("G1:G" & lastcell)
For Each c In myRange.Cells
ActiveSheet.CheckBoxes.Add(c.Left, c.Top, c.Width,
c.Height).Select
With Selection
.LinkedCell = c.Address
.Characters.Text = ""
.Name = "Check" & c.Address
.Display3DShading = True
End With
Next
myRange.Select
Selection.ColumnWidth = 2.15
Application.ScreenUpdating = True
End Sub

After ticking, just check whether value of cell in G is TRUE or FALSE

--
Regards

Roger Govier


"Anthony Viscomi" wrote in message
...
Actually, I was looking to place a "check box" within a cell. Is this
possible?
"Bob Phillips" wrote in message
...
Set the cell's font to Marlett, then use the character a.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Anthony Viscomi" wrote in message
...
I would like to place a "check mark" in a cell, but I'm not sure how
to
accomplish this. Can anyone help?

Thanks in advance!
Anthony








  #7   Report Post  
Posted to microsoft.public.excel.misc
Sloth
 
Posts: n/a
Default Check Mark

I don't think you can place a check box in a cell, but you can turn a cell
into a checkbox with this macro I found from another post.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1")) Is Nothing Then
With Target
If .Value = "ü" Then
.Value = ""
Else
.Value = "ü"
.Font.Name = "Wingdings"
End If
End With
End If
sub_exit:
Application.EnableEvents = True
End Sub

"Anthony Viscomi" wrote:

I would like to place a "check mark" in a cell, but I'm not sure how to
accomplish this. Can anyone help?

Thanks in advance!
Anthony



  #8   Report Post  
Posted to microsoft.public.excel.misc
Sloth
 
Posts: n/a
Default Check Mark

This code will make a cell into a checkbox.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
On Error GoTo sub_exit
If Not Intersect(Target, Range("A1")) Is Nothing Then
With Target
If .Value = "ü" Then
.Value = ""
Else
.Value = "ü"
.Font.Name = "Wingdings"
End If
End With
End If
sub_exit:
Application.EnableEvents = True
End Sub


"Anthony Viscomi" wrote:

I would like to place a "check mark" in a cell, but I'm not sure how to
accomplish this. Can anyone help?

Thanks in advance!
Anthony



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I place check mark Paul T Excel Discussion (Misc queries) 2 October 3rd 05 04:25 PM
How do I add a check mark in a cell in a spreadsheet in Excel? Carlos A. Excel Discussion (Misc queries) 9 July 6th 05 01:52 AM
How do I get a field in excel to auto complete with a check mark RichardZ Excel Discussion (Misc queries) 1 June 28th 05 10:08 AM
check box, so when you click on it it inserts a check mark into t. Steve Excel Discussion (Misc queries) 2 April 13th 05 09:12 PM
Excel: How do I type a letter in a column and make a check mark a. BauerY Excel Worksheet Functions 3 March 24th 05 06:34 PM


All times are GMT +1. The time now is 02:19 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"