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

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
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,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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