A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Re: checkboxes on worksheet
Since this is your second time around with this issue, I propose an alternative...
In each sheet's code module, where checkboxes are required, place this code...
'---
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
'Exit if Doubleclick is not on Column E <<<<
If Target.Column <> 5 Then Exit Sub
'Toggle Checkmark
With Target
'chr(163)
If .Value = "£" Then
.Value = "R"
Else
.Value = "£"
End If
.Font.Name = "Wingdings 2"
.HorizontalAlignment = xlCenter
End With
'Exit edit mode
Cancel = True
End Sub
'---
Suggest you increase the font size and set cells to Bold in the applicable column.
When a cell in the column is double-clicked the "checkbox" will toggle unchecked/checked.
'---
Jim Cone
Portland, Oregon USA
https://goo.gl/IUQUN2 (Dropbox)
(free & commercial excel add-ins & workbooks)