A
Arno Rite
I want a cell to be formatted as a checkbox. I don't want to use form or
activex controls. Is this doable?
activex controls. Is this doable?
Thanks Dave. That works. Turns out I had two problems:
1. The alt key on my laptop is not configured like that of most "regular"
keyboards. When I press the alt key, no text is written to the screen. I
attached an external one to work around this problem.
2. I didn't understand that the checkmark only shows up AFTER the user
presses the enter key.
So now I have another question: How do I sum (count) the number of boxes
checked in a column?
Dave Peterson said:I see the u-umlaut in the formulabar as soon as I let go of the alt key. The
checkmark appears in the cell, then, too.
if there's nothing else in that range:
=counta(a1:a10)
If there might be someother stuff in that range:
=countif(a1:a10,char(252))