Collapsible Multi-Select UserForm Control

Jun 27, 2008

I would like to add a combobox type control that will allow multiple selections. I know that the combobox in the MS Forms Object Library only allows single selections and that the list box is the way to go to allow multiple selections, but I am trying to keep the form as small as possible. I would like to add a control similar to the one used on pivot charts, where the user clicks the dropdown box and can select multiple items. I'm hoping this control is installed with MS Office and just needs a reference to it, but I am open to installing third party controls as well.

View 7 Replies


ADVERTISEMENT

Reloading Selections In Multi Select Listbox Control

Sep 28, 2006

I have a multiselect listbox in a worksheet that the user can select from. When the file is saved, closed and reopened, the user selections disappear. Is there a way of reloading the previous selections when the file is reopened? I have used the listbox from the control toolbox and have Excel 2003. My VB experience is very limited!!

View 8 Replies View Related

UserForm Control To Select Range

Aug 8, 2008

I want a control to select a range in a userform I'm creating.

I wonder if we can use the same type of control the wizards use, where you click on the right and choose the range? Alternatively, what's the best option?

View 9 Replies View Related

Return Row Index Of Selected Items In Multi Column Multi Select Listbox

Jun 30, 2014

I have a listbox with 8 columns. Multiselect is enabled, and it must stay this way. As part of my program, after the user presses a command button, I need to use the row indexes of the selected rows in order to copy the selected information into an array which is then placed in a different listbox, and then delete the items from the original list. Pseudocode of what I want to do:

[Code] .....

But my understanding is that .ListIndex does not work this way with multiselect listboxes. I've tried searching for a solution for a while, but I cannot find one.

View 5 Replies View Related

Select From Multi-Select Listbox And Get Index Number?

Oct 30, 2012

I have a multiselect listbox with values that gets populated from a sql statement, and I would like to get is the first or second index from the selected item. I know how to get the listindex from a combobox by using:

VB:
cbnumber.List(.ListIndex, 0)

How can I loop through and get the 1st index number for the selected items only from the listbox? I want to pass this index number to another sql statement.

View 5 Replies View Related

Select Next Control / Cell On Worksheet After Enter In Control

Jan 9, 2008

Within the ComboBox properties, is there anyway to control after "enter" his hit, you move to the right instead of down (similar to the edit under Tools/Options)?

View 9 Replies View Related

Last Selection In Multi Selected Form Control Listbox?

Jul 30, 2012

I have one form control listbox in excel. It is with multi selection Is there a way to find the latest selection in the listbox?

View 2 Replies View Related

Macro That Deletes Sheet With Control & Shows UserForm Causes UserForm To Disappear

Jun 15, 2009

This is weird - if you delete a sheet that contained a control then

a. showing a modeless userform resluts in a userofrm that goes invisible at subroutine End
b. public variables lose their value

These things do not happen if the sheet did not contain a control. Attached is an example file - put the inputfile.xls in your default file location (or add a path in the code) then open the ProblemDemo.xls and run the main macro to see it fal - isthis another Excelbug I've found?

View 9 Replies View Related

List Box Multi Select

Jan 26, 2010

I have a database that is setup and I want to add a ListBox to the userform and I know how to do that and add all the listbox entries.. my trouble is how do i save the selected entries(multiselect) to sheet and load them to the form (what was selected) using what i have below?

HTML ListBox1 = cells(n,5).value

and to save

HTML cells(n,5).value = ListBox1

View 4 Replies View Related

Using Two Multi-Select Listboxes

Jan 23, 2012

I'm trying to make two multi select listboxes in excel. I have tried I myself, but I know the excistence of VBA only since one week .

In sheet1 I have a number i.e. 50 in "A1" . First I want to make a list of this number, so cell "A2" = 1, "A3" = 2, .... "A51" = 50. This range has to be variable since the number can be 1 but als 100.

Then I want to populate ListBox1 in sheet2 with the list from sheet1. Next I want a second ListBox (ListBox2) and two buttons ("Add item" and "remove items") to move items from ListBox1 to ListBox2 and back.

Finally i want the selection that is made in ListBox2 to be put in sheet1 in a specific column (let's say C) where "C1" is the first selected item from ListBox2 "C2" the second and so on. This range has to be variabel since the number of selected items is not known.

View 4 Replies View Related

Multi Select List Box

Apr 8, 2008

Private Sub cmdSubmit_Click()
If Me.lstProcess.Value = -1 Then
MsgBox "Please Select SPA Process", vbExclamation, "SPA Process"
Exit Sub
End If
ActiveWorkbook.Sheets("SPA Error Tracking").Activate
Range("B4").Select
Dim i As Integer
For i = 0 To lstProcess.List(i)
Do
If IsEmpty(ActiveCell) = False Then
ActiveCell.Offset(1, 0).Select
End If

Loop Until IsEmpty(ActiveCell) = True

With ActiveCell
.Value = txtLoanNumber.Value
.Offset(0, 1) = txtProsup.Value
.Offset(0, 2) = txtIssue.Value
.Offset(0, 3) = lstProcess.Value
End With
Next i
End Sub

1. What property would I use for the message box at the beginning, if the user has not made a selection?

2. I have the listbox set as multiselect. How can I update this code to take each selection and create a new row on the Error Tracking Sheet?

If the user selects multiple selections from the list box. I will need to create a separate row of data for each selection.

View 9 Replies View Related

Multi Select Listbox

Jan 19, 2009

I have a mulit-extended listbox, a textbox and a button on a form.

I have populated the listbox with a list of files from a directory no problems.

First Part (Single Selection):

When I click on one/single filename in the list I want:

1. The textbox to be populated with the name I have selected

2. When I click the button (With the single filename selected, I want to call a function passing the filename I have selected.

The function could contain a msgbox(selecteditemname) for now.

Second Part (Multi Selection):

When I multi select filenames from the list I want:

1. The textbox to be populated with "Multiple Files Selected"

2. When I click the same button as before (With multiple filenames selected, I want to call a different function and pass each filename individually in may be a for loop)

The function could contain the loop and with each filename in the loop msgbox(selecteditemname)

I have tried the above and noticed that the listbox1.value property for multi listboxes dont seem to work and I am not really sure how to distinguish between one selection or multiselection to get a button to pass off to two separate functions.

View 9 Replies View Related

Referencing Userform Control From Another Userform / Class Via Variable

May 3, 2012

I have several non-modal userforms in my App, some of them have date-fields that require manual entry typing of dd/mm/yy etc (No single userform has more than one date-box in it, this I think may be pivotally useful)

Now the Userform 'Calendar' that is built on the class of the same (cCalendar) name, has the write value line 'ActiveCell.value = theCal.value'

I'm looking to change this to refer to the correct userform.Textbox value, depending on which form is open.

I would imagine I could simply have a global string, whose value is set (or re-set) whenever a Userform is initialized (some sort of 'ActiveUF.value = Me.Name), where I get lost is referring to the components by name, so as to have a case statement by where I go:

Code:

Private Sub theCal_AfterUpdate()
Select Case ActiveUF
Case "AddForm"
application.vbe.components("AddForm").controls("AddFormDatePicker").value = theCal.value
Case "EditForm"
'.... etc
end select
end sub

better way of doing this (instead of passing around the userform name as a variable) - or proper syntax for referring to controls outside of the 'active' userform (but an open userform nonetheless)?

Every time I have to do this particular thing with userforms, I completely forget how, and the object browser always leads me on an infinite loop of Application.vbe.activevbproject.vbcomponents.vbe.active....

PS - there may be one slight complication to the process - one of the forms, has a 2-tab page in it, each page having similar (but named differently) fields. So I may need to be able to throw in 'Activepage' or whatnot

View 5 Replies View Related

Multi Select Drop Down Boxes

Apr 21, 2009

i want to have an input box where i can select say 5 cities and have a chart of the weather in all those cities.

http://www.4shared.com/file/10050153...mpweather.html

is the excel file

View 9 Replies View Related

Multi Select Values To Filter

Aug 30, 2007

The data is has the following structure:

ID no | Name | Group | Organisation | ...A load of data metrics...

Currently I'm using a standard combobox to select which row of data to analyse - this is based on the concatenation of the persons name, their group and their organisation. What I would like to do is to:

1. Be able to select more than one person
2. Be able to select all/some people from the same Group and Organisation and get their data - e.g. filter the data so that only data for one group is shown and then be able to select one or more names from that group to analyse the data for

View 3 Replies View Related

Multi-Select Listbox Selections To Different Columns

Feb 11, 2014

I am currently setting up a userform where one of the options is for an error code (chosen from a listbox) but the user has to be able to select multiple codes. I have the below working if it is NOT multi select, works a dream and goes in the right column.

VB:
If ListBox2.Text = "A1" Then
LastRow.Offset(1, 20).Value = "x"
ElseIf ListBox2.Text = "A2" Then
LastRow.Offset(1, 21).Value = "x"

But as soon as I set it to mutliselect and choose say A1 and A2 neither one writes, I imagine because Listbox2.text is now A1,A2 and not just one or the other.

View 9 Replies View Related

VBA For A Multi Select Listbox Results With NewLine

Aug 5, 2009

Is it possible to have some VBA in Sheet1:

1. That when a user click on a cell in a particular column within a specific sheet:

1.1 That they are presented with a multi select listbox (Showing 20 items stored in a column in Sheet2 )

1.2 And when the items are selected that the items are automatically written in the same cell that was clicked in Sheet1 with a new line break in between each item?

View 9 Replies View Related

Collapsible Tree

Jan 26, 2007

how to create a collapsable tree in Excel using VBA.

Note: There is restriction that I cannot use ActiveX

A small example will be very useful.

View 3 Replies View Related

Add Msgbox With No Selection Error To Multi-Select Listbox

May 20, 2014

I want to add a msgbox with a no selection error to a multi select listbox I have. For a dropdown I just use "if .ListIndex =-1" but listindex doesn't seem to work. I'm playing with .selectedindex but it's not playing ball

View 4 Replies View Related

Multi Select Listbox, Remove Selected Items.

Oct 25, 2009

i have a multi select listbox that i want to be able to remove the selected items in one hit.

i have not been able to convert code for removing single selected items and could not find a working example.

this is probley the closest though cos its removing items it plays havoc with the listcount

View 7 Replies View Related

Multi Select List Box To Open Multiple Worksheets

Jul 12, 2006

I have this workbook with 22 sheets and 21 are hidden. On the one open sheet there is a button that opens a userform with a listbox. I have radio buttons on the side to control whether the list box allows single selection, multiple selection, and extended selection. I want to change extended to open all sheets.

Anyway, I have the list box populated but I can't figure out how to code opening single sheets, multiple sheets, or all sheets depending on the radio button selected when the OK button is pressed. I know the listbox depends on the selected property but I am stuck. Here is the code I had but it is a mess. I am still new to VBA.

Private Sub OKButton_Click()
Dim Msg As String
Dim i As Integer
Dim UserSheet As Object
If ListBox1.ListIndex = -1 Then
Msg = "Please select a sheet."
Else
Msg = ""
For i = 0 To ListBox1.ListCount - 1
If ListBox1.Selected(i) Then
For Each i In ListBox1..........................

View 3 Replies View Related

Transfer Chosen Items From Multi-Select ListBox

Mar 18, 2008

I am trying to create a data entry form with a text field and a listbox. The list box is populated by another sheet and the text box will be used to enter names. I need to be able to enter a new name, select multiple options from the list box and then click a button to add this info to a sheet in excel.

I have read about changing the list options to allow this etc - the problem is I can't get the results to go back into excel - all I get is a name with nothing from the listbox.

View 4 Replies View Related

Multi Colored UserForm

Oct 26, 2007

I want to have the top half of the userform colored in Red and the bottom half in green. This is not something of much practical use but would be cool and certainly very educational to see if could be done.

I have been searching to see if i could find some snippet Win GDI API codes which i could adapt to Excel and am also asking here maybe someone has seen this done in excel userforms before.

View 9 Replies View Related

VBA Code For Transferring Selections On A Multi Select List Box To A Page

Jun 12, 2009

Whats the VBA code for transfering selections on a multi select list box to a page.
ex. the list box has selections from 1 to 20 and I want to select 3,4, and 5
then on the page I want it to say 3,4,5

View 9 Replies View Related

Collapsible Rows & Column With Different Levels

Mar 19, 2008

I have been using a spreadsheet which will allow you to hide columns and rows with a button associated with that row or column. I need to adapt this spreadsheet for another purpose but dont know how to recreate this feature. I have attached a screan capture to assist with my description

View 2 Replies View Related

Multi-Page Userform Controls

Dec 15, 2008

I have a MultiPage userform and I'm adding (4) control buttons - CancelButton, BackButton, ForwardButton and FinishButton. On the first page, those names are fine but when I get to subsequent pages, I get an ambiguous error if I try to name the controls the same. But the code will all be the same. What am I missing? In an example that I have, the user was able to name all the controls with the same name. What setting would control that?

View 5 Replies View Related

SetFocus On Multi Page UserForm

Jun 18, 2006

I've got a userform with multiple pages, and in my userform initialize sub I set the focus to "combobox1" on "page1". When a user is on page2 of the form and clicks my "ClearData" button, which calls the initialize event, I get a run time error 2110 - "Can't move focus... etc" I would like users to have the ability to clear the form and start over no matter what page they are on.

View 8 Replies View Related

UserForm Multi-Page Wizard

Mar 18, 2008

i'm trying to build an app that'll take a user through 5 or 6 steps of a process, with maybe 2-3 substeps in some steps. right now i'm currently using a multipage Userform , but all the tabs make the whole thing look cluttered (even when there's a "Next" button in plain sight). this is especially because i've put each substep as a multipage form under that step's page (multipage forms inside a multipage form). so steps 1-5 would each have their own pages (1-5), then in page 1 you'd have another multipage form (1.a. - 1.c.). is there a way to make it look simpler? i'd like it to look a bit like a Wizard (ie remove all the tabs), but the only way i can think of is to throw a whole heap of controls on one page, and turn them visible/invisible each step of the way.

View 4 Replies View Related

Selection On Multi-Select Listbox - Copy And Paste That Field From Any Folder

Aug 14, 2014

I am working on a macro, which asks the required field from multi select list box.

User can select required field, for example some user may be interested in
Region ID, Circle, BSC ID, Cell ID, Sector ID, City/Town.

Some user may be interested in Circle, BSC ID, Cell ID, Sector ID, City/Town.

Some user may be interested in BSC ID, Cell ID, Sector ID.

In sort, Selection on a multi select list box copy and paste that field from any folder.

That folder may have any location, and contains file which have.

Date
Vendor

Region ID
Circle

BSC ID

[Code] .....

View 1 Replies View Related

Indentify Selected Items In Multiple Multi Select ListBox Controls

Sep 26, 2006

changing two variables a various amount of times and running the same procedure and copying the resutls into another sheet. Seems like a perfect place for a macro. However, these variables can be chosen from a list that the user wants. So why not build in a listbox for each one. Now I have two listboxes one for variable A and one for variable B.

The procedure in theory goes something like this we change variable A from the base case and then run the procedure for variable B, get the results, then run the scenario again but changing only variable B abnd repeat. Then once, all of the variable B scenarios are done, I want to change the variable A and then repeat and so forth.

That is the background and my main problem at this point, is that have these values in two listboxes, I know how to do the for each loops and such, however, I do not know how to do them for values in the listbox.

How do I identify the values selected in the respective listboxes and then pull them so I only use them for the for each loop?

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved