Check Boxes

AllenCochran

New Member
Joined
Dec 8, 2008
Messages
27
I have a long list of items that I need to check. On the last version of this document, good = 1, bad = 0, piece of cake. On the new version, I have been instructed to make good = a check mark and bad =no check mark. My total score is then is caculated from there.

I used the activeX control and it was working fine (other than the pain of having to do each manually) and then my file size got to large. It was crippling excel and I have a good computer.

Any suggestions.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Try this, if you want a tick in box alongside the "good" and "bad"
Highlight the column you want the tick to appear

Change font for that column to "Marlett"
Use this formula, assuming column A has the results.

Code:
=IF(A1="good","b","")

Pedro
 
Upvote 0
Pedro,

That was a cool function and will definitely be used in other worksheets, but I don't think I was clear enough with my current problem. I want the user of this form to easily be able to toggle a check mark. I do not want them to be required to type (or pull from a drop down) the words "good" or "bad". I should have said "true" or "false".

Column A is the check mark column. I need a way to generate a score based on whether or not a check mark is checked or not.


PCRIDE,

Which other check boxes are you referring to? Please see me respone to Pedro above.


I appreciate all help.

Thanks
 
Upvote 0

Forum statistics

Threads
1,221,525
Messages
6,160,329
Members
451,637
Latest member
hvp2262

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top