Quantcast
Channel: Help with Excel VBA: Combobox
Browsing all 21 articles
Browse latest View live

Help with Excel VBA: Combobox

Thanks a lot Andy. Sorry for the late reply, I got side tracked on another project. You have been extremely helpful.

View Article



Help with Excel VBA: Combobox

The following 2 macros will hide and display an existing chart.Create the chart and the select it whilst holding the CTRL key. This will allow you to use the Name Box, next to the formula bar, to set...

View Article

Help with Excel VBA: Combobox

Hi Andy - Sorry for the late reply. This is a market simulator. The "output area" is where I show the results based on the combobox selection, ie I can assign cells C5:J25 to show me the various...

View Article

Help with Excel VBA: Combobox

Can you clarify 'output window' where data tables are shown.When you same 4th button is that the same as fourth item in combobox, or is it an actual button?

View Article

Help with Excel VBA: Combobox

Andy - Thanks a lot. You have been extremely helpful. The macros do work. One final question. I have added a 4th button. And the 4th is connected to a Macro that creates a chart.  1. I would like to...

View Article


Help with Excel VBA: Combobox

For a Forms control, Add the control and click the Properties button. This time you will get the Format Control dialog.Set the Input Range to A1:A5The Cell Link to B1 The control should work without...

View Article

Help with Excel VBA: Combobox

Thanks Andy. I got this to work. Please advise next steps. 1. Can I just use a form control instead of an ActiveX control? 2. I will need to assign a link cell to it.  3. Where do I enter the codes for...

View Article

Help with Excel VBA: Combobox

Okay for xl2007. New worksheet with a,b,c,d,e in A1:A5Goto Developers Tab and from Controls Group use the Insert dropdown and insert combobox from the ActiveX section.Draw the combobox. This will place...

View Article


Help with Excel VBA: Combobox

I opened a new workbook. Entered a,b,c,d,e in Cells A1 to A5 Added a Combo box to the worksheet I could NOT right click the control/combobox. So I did a Alt F11 and typed the code in. Went back to the...

View Article


Help with Excel VBA: Combobox

The error suggests that is NOT the name of the control. Lets start from scratch. New workbook, enter some values in cells A1 to A5.Add a combobox to the worksheet. Bring up the properties window and...

View Article

Help with Excel VBA: Combobox

Sorry for the late reply. I had to drive to work. Yes, the combo box is on the worksheet. It gives me a run-time error '424', when I use the MsgBox as suggested. I suppose the control name is Combobox1...

View Article

Help with Excel VBA: Combobox

Can I assume that the combo box is on the worksheet rather than a user form?Is the control name ComboBox1?For the moment comment out all the select case code and simply use the following in the change...

View Article

Help with Excel VBA: Combobox

Please excuse me. This is my first week with VBA. It says "Can't execute in break mode", and the Select case line is "yellowed".

View Article


Help with Excel VBA: Combobox

Okay, and the error is?

View Article

Help with Excel VBA: Combobox

Hi Andy, It errors on  Select Case Combobox1.ListIndex Thanks, 

View Article


Help with Excel VBA: Combobox

On which line does it error and what is the error code and description?

View Article

Help with Excel VBA: Combobox

Hi ADG - Thanks for your reply. This is still giving me errors. Please advise. Sub Combobox1_Change()           Select Case Combobox1.ListIndex        Case 0: Call Macro1    Case 1: Call Macro2    Case...

View Article


Help with Excel VBA: Combobox

Hi Andy -- Thanks a lot for the suggestion. I have updated Case2. I still get errors with the "Select Case Combobox1. Listindex"  Sub Combobox1_Change()          Select Case Combobox1.ListIndex...

View Article

Help with Excel VBA: Combobox

Hi,Did you create the "Sub DropDown1_Change()" routine yourself?If the control is called ComboBox1 then the change event signature should be.Code SnippetPrivate Sub ComboBox1_Change()End SubAnd the...

View Article

Help with Excel VBA: Combobox

Hi, if your combobox is called dropdown1 then your code should be: Select Case DropDown1.ListIndexrather than Select Case combobox.ListIndex

View Article
Browsing all 21 articles
Browse latest View live




Latest Images