VBA: Pass variables between user forms?

Steve_K

Board Regular
Joined
Dec 23, 2011
Messages
187
Hi all,

I have a user form which takes values from a listbox and stores them in a collection when I click a command button. I'd like to be able to use that collection in another user form in the same workbook. What's the best way to make the collection from the first user form available for use in the second user form, since both forms contain private subs for their respective controls?

Thanks for reading!

Best,
Steve
 
It's not complicated at all to post the data to a worksheet.

Which range is your table in?

Is it actually a table?

If it is you can use something like this.
Code:
Private Sub CommandButton1_Click()
Dim tbl As ListObject
Dim rw As ListRow
    Set tbl = Worksheets("Sheet1").ListObjects(1)
    
    Set rw = tbl.ListRows.Add
    
    ' change control names here if required
    rw.Range.Value = Array(ComboBox1.Value, Combobox2.Value, TextBox3.Value, TextBox3.Value, TextBox4.Value, TextBox5.Value)
    
End Sub
 
Last edited:
Upvote 0

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Hi Norie,

Thanks for your reply, the more I read, the more I begin to understand. Yes, it's a table called "Opportunities". So far, this is what I'm trying. It's probably pretty far off, but I wanted to make sure I gave it a go before asking for more help...

Code:
tableColumnCount = Range("Opportunities[#All]").Columns.Count

For j = LBound(arrCols) To UBound(arrCols)
        For i = 0 To tableColumnCount
            With ws.ListObjects("Opportunities")
                If j = i Then
                    .ListColumns(i).DataBodyRange.Value = arrCols(j).item.Value
            End With
        Next i
    Next j

Also, I'm using the code you so kindly provided a couple days back to actually populate the items from my list boxes into their respective collections:

Code:
    'Loop through the list boxes and add the selected items to each collection
    For j = LBound(arrCols) To UBound(arrCols)
        With configForm.Controls(arrLBs(j))
            For i = 0 To .ListCount - 1
                If .Selected(i) Then
                    arrCols(j).Add (.List(i))
                End If
            Next
        End With
    Next j

Would it be better to either a.) populate each cell of each table as the collections are populated, b.) forego using collections altogether and just populate the tables and use them, or c.) populate the collections AND populate the tables? My gut says B...
 
Last edited:
Upvote 0
What exactly do you want to populate the table with?

I assumed it was what the user had selected or entered in textboxes/comboboxes/listboxes/whatevercontrol.

I thought the collections you have were being used to populate the listboxes.
 
Upvote 0
Sorry, I'll explain:

I'm creating a system which keeps track of sales opportunities. An opportunity row has several columns, each split into one of 5 different phases: General, Leads, Pipeline, Backlog, Premiums. To make the table easier to navigate, I want to be able to allow a user to hide specific columns per each phase. My form with list boxes is used for that: each list box for each phase reads in the headers from the large opportunity table and then the user selects which columns he wants to be visible in each phase. Once he hits "Save" on the user form, his choices should be made persistent and then the Opportunities table will read and hide them accordingly.

Originally, I thought I could use collections to keep the user's list box choices persistent. That works so long as the document is open, but once the document is closed, the choices would be lost. To solve that, I reckoned I'd need to populate the choices for each list box into a separate "Config" worksheet to save them. Since I like to keep things organized, I created a table for this on a separate sheet with a column for the choices from each list box. So, now I'm trying to figure out how to get the choices from each list box populated into the right column in the config table. Then I'll reason out how to read them and hide them.

Does that make any sense?
 
Last edited:
Upvote 0
So you do want to populate a table with the selections from the listboxes?

Have you tried the code I posted, changing/adding control names as needed?
 
Upvote 0
So you do want to populate a table with the selections from the listboxes?

Have you tried the code I posted, changing/adding control names as needed?

Yeah, I guess that's the easiest way to say it. :) Are you referring to the following code?:

Code:
    'Loop through the list boxes and add the selected items to each collection
    For J = LBound(arrCols) To UBound(arrCols)
        With configForm.Controls(arrLBs(J))
            For i = 0 To .ListCount - 1
                If .Selected(i) Then
                    arrCols(J).Add (.List(i))
                End If
            Next
        End With
    Next J

If so, I figured this was where things needed to be changed. I think I need to change that first line (arrCols) which refers to the array of Collections? Seems like it should be an array of table columns instead? I apologize if I'm a bit dense - to be honest, I'm still new to VBA and fumbling around a bit with some basics.

Thanks for your patience, I really appreciate it.
 
Upvote 0
I'm referring to the code I posted in post #11 to populate a row in a table.

Looking at the code you posted I'm wondering if the listboxes are multiselect.

If they are what exactly do you want to put in the table?

All the selected values from each listbox?
 
Upvote 0
Oh, good grief. I completely missed your post #11. I'm going to work with that a bit and see if I can't figure it out. Sorry about that.
 
Upvote 0
To better illustrate what I'm after as I try out your previous post:

Fig 1: Master Opportunities table:

Added DateOpp TypeClientContact MethodAmountEst. Start Date...
10/20/2012LeadNikePhone$10,00010/25/2012...
10/26/2012BacklogCoachE-mail$20,00010/30/2012...

<tbody>
</tbody>

Fig 2: List boxes from user form, triggered from "Opportunities" worksheet and populated with the headers from the table in Fig. 1. Red items are the fields the user has selected per list box.

GeneralLeadsPipelineBacklogPremiums
Added DateAdded DateAdded DateResourceAdded Date
Opp NameOpp NameOpp NameOpp NameOpp Name
ClientClientClientClientClient
Contact MethodContact MethodContact MethodContact MethodContact Method
AmountAmountAmountAmountAmount
Est. Start DateEst. Start DateEst. Start DateEst. Start DateEst. Start Date

<tbody>
</tbody>

Fig 3: Config Table on "Config" worksheet. The User Form in Fig 2 should list these as "selected" after it populates all of the headers from the table in Fig. 1.

GeneralLeadsPipelineBacklogPremiums
Opp NameAdded DateOpp NameResourceAdded Date
ClientOpp NameAmountOpp Name
AmountClientEst. Start Date

<tbody>
</tbody>

Hope that makes more sense.
 
Last edited:
Upvote 0
So I've been playing at this for a while, and I think I'm close, but still just a bit stuck. Here's what I have:

Code:
 Set ws = Sheets("Config")
 Set tbl = ws.Range("Config[#All]")
oppTypes = Array("General", "Leads", "Pipeline", "Backlog", "Premiums")
arrLBs = Array("lbGeneral", "lbLeads", "lbPipeline", "lbBacklog", "lbPremiums")
    
    tbl.Clear
    
    'Loop through the list boxes and add the selected items to each collection
                For j = LBound(oppTypes) To UBound(oppTypes)
                    With configForm.Controls(arrLBs(j))
                        For i = 0 To .ListCount - 1
                            If .Selected(i) Then
                                tbl.Cells(j, i).Value = .List(i)
                            End If
                        Next i
                    End With
                Next j

When I tested the For loop values, it seemed like I was getting the right row and column values for inserting the list box values. At the moment, I get the following error: Run time error '1004': Application or Object defined error." Any thoughts on what I'm missing? Will continue to search...

Thanks for your time!

EDIT: Seems I was mistaken - the row count (i) is not quite what it needs to be.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,746
Messages
6,132,476
Members
449,729
Latest member
davelevnt

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top