Simple VisualBasic Referencing Problem

Jon H

New Member
Joined
Nov 23, 2005
Messages
17
Hi,

I have a simple Visual Basic question.

I have created a simple macro to import some data into my spreadsheet. One of the lines in the visual basic specifies to go to a different worksheet. It reads:

Sheets("M3BASE_1").Select

However, instead I would like it to use some text in a cell as the name of the sheet to select. (ie I am going to type the name of the sheet I want the macro to select in a cell, say A1 for instance. I want the macro to look at this cell and use the text to know which sheet to select.)

What command do I replace the above with to get this to work?

Any help greatly appreciated!

Thanks
Jon
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi, Welcome to the Board!

Try
Code:
On Error Resume Next
Sheets(Range("A1").Value).Select
On Error GoTo 0

or, more accurately, something like:
Code:
On Error Resume Next
Sheets(Sheets("Sheet1").Range("A1").Value).Select
On Error GoTo 0
 
Upvote 0

Forum statistics

Threads
1,214,905
Messages
6,122,172
Members
449,071
Latest member
cdnMech

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