Placing file name in textbox

RZoig

New Member
Joined
Jul 10, 2013
Messages
48
Office Version
  1. 365
Platform
  1. Windows
Hello.

I have an Excel sheet named DATA and a text button with the word "TEST".

I want to assign a macro to that text button that opens a open file dialog, collect the the file name and replace the word "TEST" with the file name.

I've tried this:
Sub TextBox4_Click()​

Dim sFileName As String​
Dim TextBox4 As TextBox​

sFileName = Application.GetOpenFilename("MS Excel (*.xlsx), *.xls")​

TextBox4.Text = sFileName​

End Sub​

It doesn't work.
I'm able to collect the file but then it returns
"Run time error '91'
Object variable or with BLock not set"

The error is here:
TextBox4.Text = sFileName​

What am I missing?

THX!
Rui
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hello.

The error is here:
TextBox4.Text = sFileName​

What am I missing?

Should this Textbox4 be a form textbox?

I used the text box available at the insert tab...

Is that it?
 
Upvote 0
Hello once again.

Just pushing this post forward. See if anyone answers.

I didn't find what's wrong yet.

Thanks!
R
 
Upvote 0
That's my doubt. This is suppose to work with a userform only?
 
Upvote 0

Forum statistics

Threads
1,215,586
Messages
6,125,689
Members
449,250
Latest member
azur3

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