Referencing a sheet with a variable of type string in a macro

asunwatcher

New Member
Joined
Oct 9, 2010
Messages
24
I'm writing a function that gets data from a worksheet with a name dependant of the value of a cell. The cells value (e.g. Sheet1) is called into the function as string_name.

Essentially I want to transform this code

Code:
xrange = Sheets("Sheet1").Range("I2:I20").Value

into something like this

Code:
xrange = Sheets(string_name).Range("I2:I20").Value

I realise it's probably a silly question, but I've been unsuccessful in implementing this for a few hours now...help would be greatly appreciated.
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Code:
Dim string_name as string, xrange as variant
string_name = "Sheet1"

xrange = Sheets(string_name).Range("I2:I20").Value

will do the same as
Code:
Dim xrange as Variant

xrange = Sheets("Sheet1").Range("I2:I20").Value
 
Upvote 0
you know the problem was I wasnt saying string_name as string. talk about wasted time! Thanks for the help @mikerickson - it was indeed a silly question :)
 
Upvote 0

Forum statistics

Threads
1,223,778
Messages
6,174,482
Members
452,566
Latest member
Bonnie_bb

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