Accessing object on different sheet

Mr930

Well-known Member
Joined
Aug 31, 2006
Messages
585
I built some VBA code where I do some stuff to a list box. I have moved the list box to a different sheet and now the code says it cannot find it. How do I reference the List Box now that it is on a different sheet?

thanks
Fred Emmerich
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Just put the sheet name in front of the textbox name. Something like:

Sheet2.YourTextBoxName.Text = "Voila"
 
Upvote 0
Try like this

Code:
Sub test()
Sheets("Sheet1").TextBoxes("TextBox 1").Text = "Fred"
End Sub
 
Upvote 0
I am triggering my code off a button on the sheet that does not contain the list box. I change to the sheet that does have the list box by using Worksheets(...).Select, but this does not seem to help. WOuld it be a public/private issue on the list box?
 
Upvote 0
I just tried this on Sheet2 and it worked

Code:
Private Sub CommandButton1_Click()
Sheets("Sheet1").TextBoxes("TextBox 1").Text = "Fred"
End Sub

Where is the textbox from - the Forms toolbar or the Controls toolbar?
 
Upvote 0
ActiveX toolbar...

I got this to work:

Worksheets("Sheet1").OLEObjects("ListBox1").ListFillRange = "MyRange"
 
Upvote 0

Forum statistics

Threads
1,224,568
Messages
6,179,572
Members
452,927
Latest member
whitfieldcraig

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