Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Group Checkboxes to only allow on "checked" box

I am trying to format an excel spreadsheet that contains three checkboxes for
one particular question.

My goal is to link all three checkboxes listed for (yes, no, N/A) response
to only allow on box to be checked for an answer.

Is there a way to format this in excel?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 461
Default Group Checkboxes to only allow on "checked" box

Try using Radio Buttons instead... but if you insist on using checkboxes I
can write a code that would only allow one checkbox to be checked.

"T.Roy" wrote:

I am trying to format an excel spreadsheet that contains three checkboxes for
one particular question.

My goal is to link all three checkboxes listed for (yes, no, N/A) response
to only allow on box to be checked for an answer.

Is there a way to format this in excel?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Group Checkboxes to only allow on "checked" box

Would the radio buttons offer a sum of the answers provided (i.e. yes, no,
N/A) we are trying to capture on the "true" answer.

how would I assign the format to capture that?

There are several tabs for the workbook already filled out with the
checkboxes, would it be easier to assign the code for that instead of redoing
all the sheets to have radio buttons?

"AKphidelt" wrote:

Try using Radio Buttons instead... but if you insist on using checkboxes I
can write a code that would only allow one checkbox to be checked.

"T.Roy" wrote:

I am trying to format an excel spreadsheet that contains three checkboxes for
one particular question.

My goal is to link all three checkboxes listed for (yes, no, N/A) response
to only allow on box to be checked for an answer.

Is there a way to format this in excel?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 461
Default Group Checkboxes to only allow on "checked" box

Well how to you have it set up for the true/false answers.... cause you can
link the radio buttons, but they give values of 1 and 2

In the cell with the true/false answers you can change it to,
=IF(RadioButton1LinkedCell = 1,"TRUE","FALSE")

So whatever radio button you click the number will go to 1 and the answer
will go to true.

"T.Roy" wrote:

Would the radio buttons offer a sum of the answers provided (i.e. yes, no,
N/A) we are trying to capture on the "true" answer.

how would I assign the format to capture that?

There are several tabs for the workbook already filled out with the
checkboxes, would it be easier to assign the code for that instead of redoing
all the sheets to have radio buttons?

"AKphidelt" wrote:

Try using Radio Buttons instead... but if you insist on using checkboxes I
can write a code that would only allow one checkbox to be checked.

"T.Roy" wrote:

I am trying to format an excel spreadsheet that contains three checkboxes for
one particular question.

My goal is to link all three checkboxes listed for (yes, no, N/A) response
to only allow on box to be checked for an answer.

Is there a way to format this in excel?

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Group Checkboxes to only allow on "checked" box

I tried out the radio buttons
I have three available for one question in cells M4,N4,O4 all linked to Q4
for an answer.

In the formula how do I reference the linked cell M4, N4, or O4?

Maybe the checkboxes would better since we already have them formatted to
provide a TRUE or FALSE response.



"AKphidelt" wrote:

Well how to you have it set up for the true/false answers.... cause you can
link the radio buttons, but they give values of 1 and 2

In the cell with the true/false answers you can change it to,
=IF(RadioButton1LinkedCell = 1,"TRUE","FALSE")

So whatever radio button you click the number will go to 1 and the answer
will go to true.

"T.Roy" wrote:

Would the radio buttons offer a sum of the answers provided (i.e. yes, no,
N/A) we are trying to capture on the "true" answer.

how would I assign the format to capture that?

There are several tabs for the workbook already filled out with the
checkboxes, would it be easier to assign the code for that instead of redoing
all the sheets to have radio buttons?

"AKphidelt" wrote:

Try using Radio Buttons instead... but if you insist on using checkboxes I
can write a code that would only allow one checkbox to be checked.

"T.Roy" wrote:

I am trying to format an excel spreadsheet that contains three checkboxes for
one particular question.

My goal is to link all three checkboxes listed for (yes, no, N/A) response
to only allow on box to be checked for an answer.

Is there a way to format this in excel?



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 461
Default Group Checkboxes to only allow on "checked" box

Well, if you right click on the Radio Buttons, and link it to cells, you will
get some 1 and 2s as answers. 1 = Checked, 2 = Unchecked.

So set up 3 cells that you link to the 3 radio buttons.

I'm having trouble understanding how you are doing it with the checkboxes.
Wherever your true/false answer was for the check boxes, make that formula
say something like,

If(RadioButton1="1",DoSomething,DoSomethingElse)



"T.Roy" wrote:

I tried out the radio buttons
I have three available for one question in cells M4,N4,O4 all linked to Q4
for an answer.

In the formula how do I reference the linked cell M4, N4, or O4?

Maybe the checkboxes would better since we already have them formatted to
provide a TRUE or FALSE response.



"AKphidelt" wrote:

Well how to you have it set up for the true/false answers.... cause you can
link the radio buttons, but they give values of 1 and 2

In the cell with the true/false answers you can change it to,
=IF(RadioButton1LinkedCell = 1,"TRUE","FALSE")

So whatever radio button you click the number will go to 1 and the answer
will go to true.

"T.Roy" wrote:

Would the radio buttons offer a sum of the answers provided (i.e. yes, no,
N/A) we are trying to capture on the "true" answer.

how would I assign the format to capture that?

There are several tabs for the workbook already filled out with the
checkboxes, would it be easier to assign the code for that instead of redoing
all the sheets to have radio buttons?

"AKphidelt" wrote:

Try using Radio Buttons instead... but if you insist on using checkboxes I
can write a code that would only allow one checkbox to be checked.

"T.Roy" wrote:

I am trying to format an excel spreadsheet that contains three checkboxes for
one particular question.

My goal is to link all three checkboxes listed for (yes, no, N/A) response
to only allow on box to be checked for an answer.

Is there a way to format this in excel?

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 461
Default Group Checkboxes to only allow on "checked" box

If you need a formula, let me know what the checkbox names are in the order
that they show up on the sheet.

"T.Roy" wrote:

I tried out the radio buttons
I have three available for one question in cells M4,N4,O4 all linked to Q4
for an answer.

In the formula how do I reference the linked cell M4, N4, or O4?

Maybe the checkboxes would better since we already have them formatted to
provide a TRUE or FALSE response.



"AKphidelt" wrote:

Well how to you have it set up for the true/false answers.... cause you can
link the radio buttons, but they give values of 1 and 2

In the cell with the true/false answers you can change it to,
=IF(RadioButton1LinkedCell = 1,"TRUE","FALSE")

So whatever radio button you click the number will go to 1 and the answer
will go to true.

"T.Roy" wrote:

Would the radio buttons offer a sum of the answers provided (i.e. yes, no,
N/A) we are trying to capture on the "true" answer.

how would I assign the format to capture that?

There are several tabs for the workbook already filled out with the
checkboxes, would it be easier to assign the code for that instead of redoing
all the sheets to have radio buttons?

"AKphidelt" wrote:

Try using Radio Buttons instead... but if you insist on using checkboxes I
can write a code that would only allow one checkbox to be checked.

"T.Roy" wrote:

I am trying to format an excel spreadsheet that contains three checkboxes for
one particular question.

My goal is to link all three checkboxes listed for (yes, no, N/A) response
to only allow on box to be checked for an answer.

Is there a way to format this in excel?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
re-enable a checked "don't show this again" David Excel Discussion (Misc queries) 0 April 19th 07 11:54 PM
Can I keep "Windows of active workbook check box" checked SueH Excel Discussion (Misc queries) 1 February 15th 07 07:38 PM
How do i enable "Group" & "Ungroup" in a protected sheet ruddojo Excel Discussion (Misc queries) 0 June 2nd 06 01:01 AM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB New Users to Excel 7 May 13th 06 10:02 PM
how do i add "yes/no" checkboxes to a table cell or column? tamccann Excel Discussion (Misc queries) 0 April 17th 06 06:27 PM


All times are GMT +1. The time now is 03:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"