I took your file and modified it a bit, still using the check marks. Here is what you will need to do in order to accomplish this in your full file:
-You need to assign the Link Cell property of each of the check boxes to the cell in which it is located. To do this, right-click on the check box, and select properties. You will see Linked Cell. Next to this, type in the cell reference (i.e. B2). This can be a tedious process if you have a lot of check boxes. However, you could use a quick VBA procedure to assign the linked cell property to all check boxes on the sheet:
Sub ckboxes()
Dim Cb As OLEObject
For Each Cb In Sheets("Sheet1").OLEObjects 'change to your sheet name
If Cb.Name Like "CheckBox*" Then _
Cb.LinkedCell = Cb.TopLeftCell.Address
Next Cb
End Sub
-Format the linked cells (the cells behind the check boxes) using a custom format of 3 semi-colons: ;;; This will cause the font to be invisible.
HTH
Jason
Bookmarks