Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to build a form with certain blocks that will be filled by the
user making a choice from a list of options and reasons for thoses options on another sheet. Example would look like this Sheet 1 (The main form) ______ Please pick from the list what State you are from (When they click on this box, it will give them the choices and reason from sheet2) Sheet 2 Col 1 Col 2 Data Reason for selection 8 Select this one if you are from CA 9 Select this one if you are from FL 10 Select this one if you are from MA I dont want the use to be able to enter any thing other than their choice from the options given. When they make their selection, the number from sheet2, column 1 would be entered on to sheet 1. Can anyone help me with this€¦Any help would be greatly appreciated |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would of thought some Excell experts out there would of told me how to do
this by now! Can anyone HELP ME? I really need to get this form done and my head is bleeding from all the bangging it in to the wall!!! "Harley Rider" wrote: I am trying to build a form with certain blocks that will be filled by the user making a choice from a list of options and reasons for thoses options on another sheet. Example would look like this Sheet 1 (The main form) ______ Please pick from the list what State you are from (When they click on this box, it will give them the choices and reason from sheet2) Sheet 2 Col 1 Col 2 Data Reason for selection 8 Select this one if you are from CA 9 Select this one if you are from FL 10 Select this one if you are from MA I dont want the use to be able to enter any thing other than their choice from the options given. When they make their selection, the number from sheet2, column 1 would be entered on to sheet 1. Can anyone help me with this€¦Any help would be greatly appreciated |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Your list in Sgeet2 should have 1 column only
You must assign a name (eg: States") to it (Insertname) Get back to sheet1 Select rows to be validated by drop-down list DataValidation Select List Enter =States in range box Et voila! HTH -- AP "Harley Rider" a écrit dans le message de ... I would of thought some Excell experts out there would of told me how to do this by now! Can anyone HELP ME? I really need to get this form done and my head is bleeding from all the bangging it in to the wall!!! "Harley Rider" wrote: I am trying to build a form with certain blocks that will be filled by the user making a choice from a list of options and reasons for thoses options on another sheet. Example would look like this Sheet 1 (The main form) ______ Please pick from the list what State you are from (When they click on this box, it will give them the choices and reason from sheet2) Sheet 2 Col 1 Col 2 Data Reason for selection 8 Select this one if you are from CA 9 Select this one if you are from FL 10 Select this one if you are from MA I don't want the use to be able to enter any thing other than their choice from the options given. When they make their selection, the number from sheet2, column 1 would be entered on to sheet 1. Can anyone help me with this.Any help would be greatly appreciated |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sir, Thank you for our reply and suggestion however I am required to have
two columns because I do not want the reason for making the selection to be enter on to the form. I need the use to select/make a choice from column one due to the info in column two. I would appreciate any other thoughts or ideal you might have. "Ardus Petus" wrote: Your list in Sgeet2 should have 1 column only You must assign a name (eg: States") to it (Insertname) Get back to sheet1 Select rows to be validated by drop-down list DataValidation Select List Enter =States in range box Et voila! HTH -- AP "Harley Rider" a écrit dans le message de ... I would of thought some Excell experts out there would of told me how to do this by now! Can anyone HELP ME? I really need to get this form done and my head is bleeding from all the bangging it in to the wall!!! "Harley Rider" wrote: I am trying to build a form with certain blocks that will be filled by the user making a choice from a list of options and reasons for thoses options on another sheet. Example would look like this Sheet 1 (The main form) ______ Please pick from the list what State you are from (When they click on this box, it will give them the choices and reason from sheet2) Sheet 2 Col 1 Col 2 Data Reason for selection 8 Select this one if you are from CA 9 Select this one if you are from FL 10 Select this one if you are from MA I don't want the use to be able to enter any thing other than their choice from the options given. When they make their selection, the number from sheet2, column 1 would be entered on to sheet 1. Can anyone help me with this.Any help would be greatly appreciated |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sorry, I see no solution.
Cheers, -- AP "Harley Rider" a écrit dans le message de ... Sir, Thank you for our reply and suggestion however I am required to have two columns because I do not want the reason for making the selection to be enter on to the form. I need the use to select/make a choice from column one due to the info in column two. I would appreciate any other thoughts or ideal you might have. "Ardus Petus" wrote: Your list in Sgeet2 should have 1 column only You must assign a name (eg: States") to it (Insertname) Get back to sheet1 Select rows to be validated by drop-down list DataValidation Select List Enter =States in range box Et voila! HTH -- AP "Harley Rider" a écrit dans le message de ... I would of thought some Excell experts out there would of told me how to do this by now! Can anyone HELP ME? I really need to get this form done and my head is bleeding from all the bangging it in to the wall!!! "Harley Rider" wrote: I am trying to build a form with certain blocks that will be filled by the user making a choice from a list of options and reasons for thoses options on another sheet. Example would look like this Sheet 1 (The main form) ______ Please pick from the list what State you are from (When they click on this box, it will give them the choices and reason from sheet2) Sheet 2 Col 1 Col 2 Data Reason for selection 8 Select this one if you are from CA 9 Select this one if you are from FL 10 Select this one if you are from MA I don't want the use to be able to enter any thing other than their choice from the options given. When they make their selection, the number from sheet2, column 1 would be entered on to sheet 1. Can anyone help me with this.Any help would be greatly appreciated |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi there,
I don't really understand what u are looking at: You have 2 sheets Sheet 1 - given to the user to choose his input from validation list (code & city) Based on his choice (code / city) you need to pick up the reason from sheet2 and display next to city like below: B4 C4 D4 Code city Reason 2 City 02 Reason 08 Put at D4 ==INDEX(Sheet2!$D$4:$D$22,MATCH(1,(Sheet2!$B$4:$B$ 22=Sheet1!B5)*(Sheet2!$C$4:$C$22=Sheet1!C5),0)) array formula so : Ctrl+ shift +enter in sheet2 you will have code, city & reason listing from range b4:d22 in sheet2 you will have code 1,2,3 range name as code in sheet2 you will have city city 01, city 02, city 03 in sheet2 you will have reason 01.. reason 18 Now you can copy the b4:d4 down the rows for user to select... "Harley Rider" wrote: Sir, Thank you for our reply and suggestion however I am required to have two columns because I do not want the reason for making the selection to be enter on to the form. I need the use to select/make a choice from column one due to the info in column two. I would appreciate any other thoughts or ideal you might have. "Ardus Petus" wrote: Your list in Sgeet2 should have 1 column only You must assign a name (eg: States") to it (Insertname) Get back to sheet1 Select rows to be validated by drop-down list DataValidation Select List Enter =States in range box Et voila! HTH -- AP "Harley Rider" a écrit dans le message de ... I would of thought some Excell experts out there would of told me how to do this by now! Can anyone HELP ME? I really need to get this form done and my head is bleeding from all the bangging it in to the wall!!! "Harley Rider" wrote: I am trying to build a form with certain blocks that will be filled by the user making a choice from a list of options and reasons for thoses options on another sheet. Example would look like this Sheet 1 (The main form) ______ Please pick from the list what State you are from (When they click on this box, it will give them the choices and reason from sheet2) Sheet 2 Col 1 Col 2 Data Reason for selection 8 Select this one if you are from CA 9 Select this one if you are from FL 10 Select this one if you are from MA I don't want the use to be able to enter any thing other than their choice from the options given. When they make their selection, the number from sheet2, column 1 would be entered on to sheet 1. Can anyone help me with this.Any help would be greatly appreciated |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ranking query | Excel Discussion (Misc queries) | |||
update data validation list with new entries?? | Excel Discussion (Misc queries) | |||
Entering data on custom forms. | Excel Discussion (Misc queries) | |||
subtotaling and manipulating a list of data | Excel Worksheet Functions | |||
Pulling data from 1 sheet to another | Excel Worksheet Functions |