A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How can I make a drop down box visible within a worksheet?



 
 
Thread Tools Display Modes
  #31  
Old September 6th, 2008, 10:19 PM posted to microsoft.public.excel.worksheet.functions
IanC
external usenet poster
 
Posts: 69
Default How can I make a drop down box visible within a worksheet?

Hi PTexas

Select View Toolbars Control Toolbox to make the Control Toolbox
visible.
On the "Control Toolbox", select "Design Mode" (top left icon - blue
triangle etc.).
Right click on the combo box and select "Properties".
In the properties list, find "LinkedCell" and enter the cell you want the
data to appear in.

--
Ian
--

"PTexas" wrote in message
...
I've followed the instructions (Thank so much Corey!) and created a
Control
Combo box in a sample worksheet using the exact example given (i.e., Cells
A1:A5 have numbers 9, 10, 11, 12, 13 in them.) However, when I select
any
of those values within the dropdowwn, it doesn't show anything and the
cell
remains blank where the value I selected should be. Can someone please
tell
me "specifically" what steps I need so that when I select an item, say
"10"
from the control combo box drop down, the selected item s(10) shows in the
worksheet.
Thanks!
--
PTexas


"Corey" wrote:

Sounds like you have a Validation List and need a Control Combobox.
It will have a visible arrow always.
Do this:
1). Right Click on the top toolbar to Ensure Control ToolBox is ticked
2). 9th Icon on the toolbar is a Combobox
3). Click it and drag it in place over a cell you want it to be shown on.
Ensure 1st Icon has a Square around it(Desging Mode)
4). Double click the Combobox on the sheet to view the code
It should say:

Private Sub ComboBox1_Change()

End Sub


Click the Small drop arrow on the Right side, next to the CHANGE in the
box,
and select DropButton_Click
Should then look like this:

Private Sub ComboBox1_DropButtonClick()

End Sub



5). Enter the Code to populate the cells data you want to load in it
eg.
Private Sub ComboBox1_DropButtonClick()
ComboBox1.Clear
ComboBox1.AddItem Sheet1.Range("A1")
ComboBox1.AddItem Sheet1.Range("A2")
ComboBox1.AddItem Sheet1.Range("A3")
ComboBox1.AddItem Sheet1.Range("A4")
ComboBox1.AddItem Sheet1.Range("A5")
End Sub

6). Uncheck the Design Icon(1st icon on Control Toolbar again)removing
the
square.

Click the Combobox to see if the values show in the box.


Corey....

"angela" wrote in message
...
Hi Jenny,

Did you manage to create the drop down box that is visible? If yes,
can
you
give me a step by step idiot guide 'cos I have been struggling the past
week
without success.

tq vm,
angela

"skittles_golf" wrote:

I have created several Drop Down boxes in a worksheet but I want to
make
them
visible so people know there is a drop down box there. Right now the
arrow
doesn't show until you click on that cell. Please help I am not quite
sure
how to format it so the drop down arrow stays.
--
Jenny






  #32  
Old September 23rd, 2008, 12:21 AM posted to microsoft.public.excel.worksheet.functions
cameron
external usenet poster
 
Posts: 110
Default How can I make a drop down box visible within a worksheet?

This places the box in an arbitrary location. Is there a way to control
where the ddb is located?

"Peo Sjoblom" wrote:

Office button Excel Options, make sure "Show Developer Tab" is selected.
Click the Developer tab Controls Insert Combobox from the active x
controls,
right click the drop down and select properties, in that pane that opens.
Put the range with your list in the
listfillrange and the cell you want to link to. Click the design mode button
to get out
of design mode


--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)

"skittles_golf" wrote in message
...
How do you create a combo box in Excel 2007
--
Jenny


"Peo Sjoblom" wrote:

You can't using datavalidation, you can if you use a combobox from the
control toolbox


--
Regards,

Peo Sjoblom



"skittles_golf" wrote in message
...
I have created several Drop Down boxes in a worksheet but I want to make
them
visible so people know there is a drop down box there. Right now the
arrow
doesn't show until you click on that cell. Please help I am not quite
sure
how to format it so the drop down arrow stays.
--
Jenny






  #33  
Old September 23rd, 2008, 12:22 AM posted to microsoft.public.excel.worksheet.functions
cameron
external usenet poster
 
Posts: 110
Default How can I make a drop down box visible within a worksheet?

I just get an error when I try to click FILTER. I am using 2007.

"Bonnie" wrote:

OMG is everyone kidding? all you have to do is click on the cell you want to
have the drop down box arrow appear then go to DATA on the menu toolbar and
click FILTER then Click AUTO FILTER thats it. also make sure u highlight the
information you want to appear in the drop down menu.

"sparrot" wrote:

I am not sure what you mean by "Put the range with your list in the
listfillrange and the cell you want to link to" I got to that part and am stumped.

Thanks

"Peo Sjoblom" wrote:

Office button Excel Options, make sure "Show Developer Tab" is selected.
Click the Developer tab Controls Insert Combobox from the active x
controls,
right click the drop down and select properties, in that pane that opens.
Put the range with your list in the
listfillrange and the cell you want to link to. Click the design mode button
to get out
of design mode


--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)

"skittles_golf" wrote in message
...
How do you create a combo box in Excel 2007
--
Jenny


"Peo Sjoblom" wrote:

You can't using datavalidation, you can if you use a combobox from the
control toolbox


--
Regards,

Peo Sjoblom



"skittles_golf" wrote in message
...
I have created several Drop Down boxes in a worksheet but I want to make
them
visible so people know there is a drop down box there. Right now the
arrow
doesn't show until you click on that cell. Please help I am not quite
sure
how to format it so the drop down arrow stays.
--
Jenny






  #34  
Old September 23rd, 2008, 07:00 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default How can I make a drop down box visible within a worksheet?

Cameron

The method posted by Bonnie has nothing to do with Data Validation dropdowns
or Comboboxes.

Stick with Peo's suggestion.

Go to Debra Dalgleish's site for instructions on using a combobox in
conjunction with a DV list.

http://www.contextures.on.ca/xlDataVal10.html


Gord Dibben MS Excel MVP

On Mon, 22 Sep 2008 16:22:01 -0700, Cameron
wrote:

I just get an error when I try to click FILTER. I am using 2007.

"Bonnie" wrote:

OMG is everyone kidding? all you have to do is click on the cell you want to
have the drop down box arrow appear then go to DATA on the menu toolbar and
click FILTER then Click AUTO FILTER thats it. also make sure u highlight the
information you want to appear in the drop down menu.

"sparrot" wrote:

I am not sure what you mean by "Put the range with your list in the
listfillrange and the cell you want to link to" I got to that part and am stumped.
Thanks

"Peo Sjoblom" wrote:

Office button Excel Options, make sure "Show Developer Tab" is selected.
Click the Developer tab Controls Insert Combobox from the active x
controls,
right click the drop down and select properties, in that pane that opens.
Put the range with your list in the
listfillrange and the cell you want to link to. Click the design mode button
to get out
of design mode


--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)

"skittles_golf" wrote in message
...
How do you create a combo box in Excel 2007
--
Jenny


"Peo Sjoblom" wrote:

You can't using datavalidation, you can if you use a combobox from the
control toolbox


--
Regards,

Peo Sjoblom



"skittles_golf" wrote in message
...
I have created several Drop Down boxes in a worksheet but I want to make
them
visible so people know there is a drop down box there. Right now the
arrow
doesn't show until you click on that cell. Please help I am not quite
sure
how to format it so the drop down arrow stays.
--
Jenny







  #35  
Old July 29th, 2009, 06:11 AM posted to microsoft.public.excel.worksheet.functions
Ramesh
external usenet poster
 
Posts: 32
Default How can I make a drop down box visible within a worksheet?



"skittles_golf" wrote:

I have created several Drop Down boxes in a worksheet but I want to make them
visible so people know there is a drop down box there. Right now the arrow
doesn't show until you click on that cell. Please help I am not quite sure
how to format it so the drop down arrow stays.
--
Jenny

  #36  
Old October 20th, 2009, 07:28 AM posted to microsoft.public.excel.worksheet.functions
Ashish Mittal
external usenet poster
 
Posts: 1
Default How can I make a drop down box visible within a worksheet?



"Kendra510" wrote:

How can you do this is Excel 2003?

"Peo Sjoblom" wrote:

Office button Excel Options, make sure "Show Developer Tab" is selected.
Click the Developer tab Controls Insert Combobox from the active x
controls,
right click the drop down and select properties, in that pane that opens.
Put the range with your list in the
listfillrange and the cell you want to link to. Click the design mode button
to get out
of design mode


--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)

"skittles_golf" wrote in message
...
How do you create a combo box in Excel 2007
--
Jenny


"Peo Sjoblom" wrote:

You can't using datavalidation, you can if you use a combobox from the
control toolbox


--
Regards,

Peo Sjoblom



"skittles_golf" wrote in message
...
I have created several Drop Down boxes in a worksheet but I want to make
them
visible so people know there is a drop down box there. Right now the
arrow
doesn't show until you click on that cell. Please help I am not quite
sure
how to format it so the drop down arrow stays.
--
Jenny



I am considering that the learner is asking as to how can he / she get a
drop down visible in an Excel sheet column.

MS Office 2003:

Launch MS Excel 2003
Go to View - Toolbars - Control Toolbox
A tool panel shall open displaying all the control options.
Toggle to Sheet2 and key in the entries in a column which you want in
DropDown.
(Say Names of the months from A1:A12)
Select A1 to A12 - At Top Left corner where you can see A1 written - Type
Months - Press Enter Key.
Toggle back to Sheet1 and select 6th button (Combo Box) from Control Toolbox
Panel.
It will turn the mouse cursor in a hairline cross.
Draw a Drop Down Button of the length and width of your choice.
Right click on the created Drop Down Button and select Properties button.
Fill in ListFillRange as Months (This is the name you have given in Sheet2
for the A1:A12)
Close the properties dialog Box
Now in the in Control ToolBox, Press the very first button named "Exit Deign
Mode"
And there you go..... A drop Down with the name of the Months is ready for
you.
You may do experiments for Radio Buttons and other controls too.
  #37  
Old October 24th, 2009, 12:12 PM posted to microsoft.public.excel.worksheet.functions
Parm
external usenet poster
 
Posts: 1
Default How can I make a drop down box visible within a worksheet?

Hi

interesting discussion and helpful. takin git one step further is it
posssible to auto complete items in a drop down list by for eample typing the
first few letters. THis wuld avoid haveing to use the mouse.

Any help greatly appreciated

"Gord Dibben" wrote:

Cameron

The method posted by Bonnie has nothing to do with Data Validation dropdowns
or Comboboxes.

Stick with Peo's suggestion.

Go to Debra Dalgleish's site for instructions on using a combobox in
conjunction with a DV list.

http://www.contextures.on.ca/xlDataVal10.html


Gord Dibben MS Excel MVP

On Mon, 22 Sep 2008 16:22:01 -0700, Cameron
wrote:

I just get an error when I try to click FILTER. I am using 2007.

"Bonnie" wrote:

OMG is everyone kidding? all you have to do is click on the cell you want to
have the drop down box arrow appear then go to DATA on the menu toolbar and
click FILTER then Click AUTO FILTER thats it. also make sure u highlight the
information you want to appear in the drop down menu.

"sparrot" wrote:

I am not sure what you mean by "Put the range with your list in the
listfillrange and the cell you want to link to" I got to that part and am stumped.
Thanks

"Peo Sjoblom" wrote:

Office button Excel Options, make sure "Show Developer Tab" is selected.
Click the Developer tab Controls Insert Combobox from the active x
controls,
right click the drop down and select properties, in that pane that opens.
Put the range with your list in the
listfillrange and the cell you want to link to. Click the design mode button
to get out
of design mode


--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)

"skittles_golf" wrote in message
...
How do you create a combo box in Excel 2007
--
Jenny


"Peo Sjoblom" wrote:

You can't using datavalidation, you can if you use a combobox from the
control toolbox


--
Regards,

Peo Sjoblom



"skittles_golf" wrote in message
...
I have created several Drop Down boxes in a worksheet but I want to make
them
visible so people know there is a drop down box there. Right now the
arrow
doesn't show until you click on that cell. Please help I am not quite
sure
how to format it so the drop down arrow stays.
--
Jenny








  #38  
Old October 24th, 2009, 05:02 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default How can I make a drop down box visible within a worksheet?

DV dropdowns will not autocomplete.

If you use a combobox with DV per Debra's instructions from the site posted
below you can have autocomplete as well as the arrows showing at all times.

http://www.contextures.on.ca/xlDataVal10.html


Gord

On Sat, 24 Oct 2009 04:12:01 -0700, Parm
wrote:

Hi

interesting discussion and helpful. takin git one step further is it
posssible to auto complete items in a drop down list by for eample typing the
first few letters. THis wuld avoid haveing to use the mouse.

Any help greatly appreciated

"Gord Dibben" wrote:

Cameron

The method posted by Bonnie has nothing to do with Data Validation dropdowns
or Comboboxes.

Stick with Peo's suggestion.

Go to Debra Dalgleish's site for instructions on using a combobox in
conjunction with a DV list.

http://www.contextures.on.ca/xlDataVal10.html


Gord Dibben MS Excel MVP

On Mon, 22 Sep 2008 16:22:01 -0700, Cameron
wrote:

I just get an error when I try to click FILTER. I am using 2007.

"Bonnie" wrote:

OMG is everyone kidding? all you have to do is click on the cell you want to
have the drop down box arrow appear then go to DATA on the menu toolbar and
click FILTER then Click AUTO FILTER thats it. also make sure u highlight the
information you want to appear in the drop down menu.

"sparrot" wrote:

I am not sure what you mean by "Put the range with your list in the
listfillrange and the cell you want to link to" I got to that part and am stumped.
Thanks

"Peo Sjoblom" wrote:

Office button Excel Options, make sure "Show Developer Tab" is selected.
Click the Developer tab Controls Insert Combobox from the active x
controls,
right click the drop down and select properties, in that pane that opens.
Put the range with your list in the
listfillrange and the cell you want to link to. Click the design mode button
to get out
of design mode


--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)

"skittles_golf" wrote in message
...
How do you create a combo box in Excel 2007
--
Jenny


"Peo Sjoblom" wrote:

You can't using datavalidation, you can if you use a combobox from the
control toolbox


--
Regards,

Peo Sjoblom



"skittles_golf" wrote in message
...
I have created several Drop Down boxes in a worksheet but I want to make
them
visible so people know there is a drop down box there. Right now the
arrow
doesn't show until you click on that cell. Please help I am not quite
sure
how to format it so the drop down arrow stays.
--
Jenny









  #39  
Old February 2nd, 2010, 09:10 AM posted to microsoft.public.excel.worksheet.functions
LP
external usenet poster
 
Posts: 52
Default How can I make a drop down box visible within a worksheet?

Worked for me!
Thanks

"Bonnie" wrote:

OMG is everyone kidding? all you have to do is click on the cell you want to
have the drop down box arrow appear then go to DATA on the menu toolbar and
click FILTER then Click AUTO FILTER thats it. also make sure u highlight the
information you want to appear in the drop down menu.

"sparrot" wrote:

I am not sure what you mean by "Put the range with your list in the
listfillrange and the cell you want to link to" I got to that part and am stumped.

Thanks

"Peo Sjoblom" wrote:

Office button Excel Options, make sure "Show Developer Tab" is selected.
Click the Developer tab Controls Insert Combobox from the active x
controls,
right click the drop down and select properties, in that pane that opens.
Put the range with your list in the
listfillrange and the cell you want to link to. Click the design mode button
to get out
of design mode


--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)

"skittles_golf" wrote in message
...
How do you create a combo box in Excel 2007
--
Jenny


"Peo Sjoblom" wrote:

You can't using datavalidation, you can if you use a combobox from the
control toolbox


--
Regards,

Peo Sjoblom



"skittles_golf" wrote in message
...
I have created several Drop Down boxes in a worksheet but I want to make
them
visible so people know there is a drop down box there. Right now the
arrow
doesn't show until you click on that cell. Please help I am not quite
sure
how to format it so the drop down arrow stays.
--
Jenny






  #40  
Old April 23rd, 2010, 04:05 PM posted to microsoft.public.excel.worksheet.functions
green eyes
external usenet poster
 
Posts: 1
Default How can I make a drop down box visible within a worksheet?

this was VERY helpful!!! Please ignore further instruction below because
everything below is actually more confusing...and Bonnie, you're method is
elementary and doesn't address the question

"Peo Sjoblom" wrote:

Office button Excel Options, make sure "Show Developer Tab" is selected.
Click the Developer tab Controls Insert Combobox from the active x
controls,
right click the drop down and select properties, in that pane that opens.
Put the range with your list in the
listfillrange and the cell you want to link to. Click the design mode button
to get out
of design mode


--


Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
(Remove ^^ from email)

"skittles_golf" wrote in message
...
How do you create a combo box in Excel 2007
--
Jenny


"Peo Sjoblom" wrote:

You can't using datavalidation, you can if you use a combobox from the
control toolbox


--
Regards,

Peo Sjoblom



"skittles_golf" wrote in message
...
I have created several Drop Down boxes in a worksheet but I want to make
them
visible so people know there is a drop down box there. Right now the
arrow
doesn't show until you click on that cell. Please help I am not quite
sure
how to format it so the drop down arrow stays.
--
Jenny






 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:24 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.