You could use code something like the following and attach to a button :-
If ActiveCell.Value = 0 Then
ActiveCell.Value = 1
Else
If ActiveCell.Value = 1 Then ActiveCell.Value = 0
End If
Celia
Thank you for your help, I had just figured it out just before I checked the board again. I still have a question about the actual object of the check box. Even with the IF...THEN statements it still does not show the check. The people I am making this for are goin to ignore the values they just want to put a check and move on to get a total of the values that the checkboxs create.
Christopher
Sorry, don't understand what you are trying to do.
Celia
Sorry, What I need is when the check box is selected to have a check in it, and also send a value to an obscure cell. Right now I have it so it sends the value to the cell but the check box does not show the check. Thank you for your time.
Christopher
Christopher
I am assuming that what you want to do is get a count of the check boxes that have a check mark. If so, link each check box to a cell (a different cell for each check box). After doing this, when a check box has a check mark, its linked cell will display TRUE; when the box is un-checked the cell will show FALSE.
Therefore, to count the boxes with check marks :-
=COUNTIF((RangeOfLinkedCells),"True").
It is normally a good idea to place each check box on top of its linked cell, so that the contents of the cells cannot be seen.
Post again if this not what you were looking for.
Celia
Celia,
That isn't really what I was looking for but it gave me a great idea. Thank you so much for your time.
Christopher