Checkbox Resizing

  • Thread starter Thread starter W M
  • Start date Start date
W

W M

Windows XP
Office XP

I wonder if there is a way to resize checkboxes in Excel? I want the square
checkbox to be bigger than the default size. Hope this is not a stupid
question!
 
Hi again Bob,

Your programming solution to resizing checkboxes is wonderful. Thus far, I
have not been able to make it work on merged cells, however. Is this
possible?
 
I'm not sure which version of Bob's code you're using, but there's a portion
that looks like:

With Target
If .Value = "a" Then
.Value = ""
Else
.Value = "a"
.Font.Name = "Marlett"
End If
End With

Change that top line to:
With Target.Cells(1)

To see if that helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

How do I resize the actual Forms checkbox 1
How do I resize a checkbox? 1
checkboxs 12
How do I make a checkbox bigger? 2
check box column 4
Clear certain checkboxes 4
Checkboxes 6
Checkbox won't resize 5

Back
Top