Referring to Textboxes via variables

NMeeker

New Member
Joined
Feb 10, 2009
Messages
31
How can I use a variable to perform operations in multiple textboxes or comboboxes on a form?

I have a single form with 60 textboxes, and around 120 comboboxes, I also have a worksheet with 5 different sets of information for each combobox or textbox. (<-- Not sure if that made sense). Basically I have a lot of information and I want to run through my text or combo boxes using variables such as

x = 1....... to imput data into textbox(X) and combobox(X) .... which is read from the worksheet in line (X)

Any ideas? suggestions?
Thanks in advance for any help you can provide..
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
I usually keep my controls named "TextBox1" or "ComboBox1" just for this purpose.

Code:
For x = 1 to 5
   UserForm1.Controls("TextBox" & x).Value = "your value"
next x

Brian
 
Upvote 0
Thats great, Now... is there a way to reference all 60 ComboBoxes at the same time... like a combobox change event.... for all 60 comboboxes?
 
Upvote 0

Forum statistics

Threads
1,215,516
Messages
6,125,285
Members
449,218
Latest member
Excel Master

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