I am creating a universal order form for work. I would like to make it so there is a drop down list of choices because sometimes things get mixed up and I want others to be able to easily choose the correct option. How to I make it so a cell is a drop down list? Any help is much appreciated. Thanks.
I am creating a universal order form for work. I would like to make it so there is a drop down list of choices because sometimes things get mixed up and I want others to be able to easily choose the correct option. How to I make it so a cell is a drop down list? Any help is much appreciated. Thanks.
You have to use 'Cell Validation'. You can either construct a list, or reference a cell range. If you use your excel help and search for 'Validation' it should walk you through the process. Hope this helps!
I am creating a universal order form for work. I would like to make it so there is a drop down list of choices because sometimes things get mixed up and I want others to be able to easily choose the correct option. How to I make it so a cell is a drop down list? Any help is much appreciated. Thanks.
Put your list into cells somewhere in the worksheet.
Data Menu-->Validation
Select "List" from the "Allow: dropdown on the "Settings" tab.
Select the cells that contain your list in the "Source:" field.
If your list is in the same workbook, but on a different worksheet, I think you have to used a named range in the "Source:" field.
"Don't worry Boss...they can't do nothin' 'til they're through sparklin'..."
OK, now, is there a way to get rid of my list and keep them in the drop down box so my worksheet is a little cleaner?
Also, there will be three drop downs. The second and third ones will have options that are different depending on which you select with the first. How do I do that?
Also, there will be three drop downs. The second and third ones will have options that are different depending on which you select with the first. How do I do that?
One way is with VBA. You can program the "Change" event for the worksheet. If the Target argument passed to the event subroutine (the cell that changed) is your cell of interest, you can write the appropriate values to the other ranges based on the value of the Target cell.
There might be some way to do it with IF statements in the cells. I use VBA for most everything these days...
"Don't worry Boss...they can't do nothin' 'til they're through sparklin'..."
Bookmarks