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.
 
Back
Top