Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I had created a form for work, how can I create a area where the user selects
between a group of four choices. But only one of the four can be chosen, if they change there mind it automatically removes the first choice and selects the second choice. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi New Yooper,
Add four Option Buttons to the form. Selecting one button will deselect any other button. --- Regards, Norman "New Yooper" <New wrote in message ... I had created a form for work, how can I create a area where the user selects between a group of four choices. But only one of the four can be chosen, if they change there mind it automatically removes the first choice and selects the second choice. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This is a little complicated, so stick with me. If you get lost, let me know
and we'll try again!! 1. Choose an area way outside your form and type your 4 choices, one below the other. 2. Then go back to the cell where you want the choices to appear, and choose Data Validation. 3. In the next box, under "Allow", choose "List" 4. In "Source", choose the location of the 4 choices that you typed in step 1. You can get help from Excel by clicking on the little spreadsheet on the right side of the Source box. Then find your list and click, hold down your right mouse button, and drag over the 4 choices.) Should work!! "New Yooper" wrote: I had created a form for work, how can I create a area where the user selects between a group of four choices. But only one of the four can be chosen, if they change there mind it automatically removes the first choice and selects the second choice. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks that worked, one more thing! What if I had three horisontal cells and
you may only pick one. So by picking a cell, a X is put in the cell, if you select one of the others, it removes the first? "MinutiaMinder" wrote: This is a little complicated, so stick with me. If you get lost, let me know and we'll try again!! 1. Choose an area way outside your form and type your 4 choices, one below the other. 2. Then go back to the cell where you want the choices to appear, and choose Data Validation. 3. In the next box, under "Allow", choose "List" 4. In "Source", choose the location of the 4 choices that you typed in step 1. You can get help from Excel by clicking on the little spreadsheet on the right side of the Source box. Then find your list and click, hold down your right mouse button, and drag over the 4 choices.) Should work!! "New Yooper" wrote: I had created a form for work, how can I create a area where the user selects between a group of four choices. But only one of the four can be chosen, if they change there mind it automatically removes the first choice and selects the second choice. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Perhaps something like this in the sheet module.
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Range("A1:D1").ClearContents Target.Value = "X" End Sub HTH Regards, Howard "New Yooper" <New wrote in message ... I had created a form for work, how can I create a area where the user selects between a group of four choices. But only one of the four can be chosen, if they change there mind it automatically removes the first choice and selects the second choice. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Excel Help Needed | Excel Worksheet Functions | |||
Display form from an VB application in Excel | Excel Discussion (Misc queries) | |||
Is anything needed if I only load Word & Excel from Office XP Sta. | Excel Discussion (Misc queries) | |||
Difference in number of Excel NewsGroups | Excel Discussion (Misc queries) |