Convert String to Range

x0nar

New Member
Joined
May 10, 2016
Messages
34
Let's Say I'm preparing a UDF which involves something with ranges. Now consider this piece of code


Code:
Dim Var1 As String
Dim Var2 As String
Dim Rng As Range

Var1 = "$A$1"
Var2 = "B4"
Rng = Range(Var1, Var2)

The problem with this is it returns Rng does not store it as range, but instead returns #VALUE error.
So, if I wanted to set a range in UDF say from $A$1:B4, how would I proceed ?

Note that even if the Var 1 is A1 instead of $A$1 it returns the same error.
Thank you for your help.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Try
Code:
[COLOR=#ff0000]Set [/COLOR]Rng = Range(Var1, Var2)
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,964
Members
452,371
Latest member
Frana

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