ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How do I change a check box checkmark to an X (https://www.excelbanter.com/excel-discussion-misc-queries/85718-how-do-i-change-check-box-checkmark-x.html)

Jas

How do I change a check box checkmark to an X
 
I have created a form in excel to link to check boxes but on printing the
checkmark is too small for many to see easily. The check boxes I create in
Word turn out to have a large X through them as default. How can I change
the Excel checkmark to an X or be more legible on printing?

Jim Cone

How do I change a check box checkmark to an X
 
The size of the checkmark cannot be changed.
However, you could change the caption when it's clicked.
Assuming you have a checkbox from the forms toolbar and
its name is "Check Box 2" then
this code in the worksheet module might help...
'----------
Sub MoreClicks()
With Me.Shapes("Check Box 2")
If Range(.ControlFormat.LinkedCell).Value = "True" Then
.TextFrame.Characters.Text = "CLICKED"
Else
.TextFrame.Characters.Text = "off"
End If
End With
End Sub
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"Jas"
wrote in message
I have created a form in excel to link to check boxes but on printing the
checkmark is too small for many to see easily. The check boxes I create in
Word turn out to have a large X through them as default. How can I change
the Excel checkmark to an X or be more legible on printing?


All times are GMT +1. The time now is 11:24 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com