Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am sending out a questionnaire to a number of offices and would like to
make it multiple choice and provide tick-boxes or radio buttons. I have been looking for a formula to verify the "true" condition if ticked and "false" if not; I cannot find a formula or logical function that will allow me to do this. Any ideas? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You'd have to link the checkbox or option button to a cell. Option buttons
return an index number to the linked cell while checkboxes return either TRUE ot FALSE. Then you'd do a COUNTIF: For checkboxes: =COUNTIF(A1:A10,TRUE) =COUNTIF(A1:A10,FALSE) For option buttons: =COUNTIF(A1:A10,1) =COUNTIF(A1:A10,2) etc -- Biff Microsoft Excel MVP "Frank Sheeran" wrote in message ... I am sending out a questionnaire to a number of offices and would like to make it multiple choice and provide tick-boxes or radio buttons. I have been looking for a formula to verify the "true" condition if ticked and "false" if not; I cannot find a formula or logical function that will allow me to do this. Any ideas? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks; that partly answer the question - that's what I tried but got no
value returned as the True\False were not being read. Now I need to know how to link the tick box to the cell. Thanks Frank |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
For checkboxes from the Forms toolbar...
Right click on the checkbox Select Format Control On the Control tabCell link Enter the cell address: =A1 Follow the same method for option buttons. -- Biff Microsoft Excel MVP "Frank Sheeran" wrote in message ... Thanks; that partly answer the question - that's what I tried but got no value returned as the True\False were not being read. Now I need to know how to link the tick box to the cell. Thanks Frank |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you; I had to do it in the properties box though, but achieved the same
result. Frank |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I had to do it in the properties box
Ok, then you're using checkboxes from the Control Toolbox. Good luck! -- Biff Microsoft Excel MVP "Frank" <Frank wrote in message ... Thank you; I had to do it in the properties box though, but achieved the same result. Frank |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Radio buttons, check boxes in Excel 2007 | Excel Discussion (Misc queries) | |||
Use of Radio Buttons | Excel Discussion (Misc queries) | |||
Option Buttons/Radio Buttons | New Users to Excel | |||
Radio Buttons | Excel Worksheet Functions | |||
VBA: Disable Frame and Radio Buttons based on Another Radio Button Being True | Excel Worksheet Functions |