mmetzinger
Board Regular
- Joined
- Dec 30, 2010
- Messages
- 61
I have a string variable called Bob that contains the value D2 and need it to convert it to a range called BobR. How do I do this?
I tried
this is not an actual piece of my code exactly but I need to know how to do this in order to do my bigger piece.
I tried
Code:
Dim bob As String
Dim bobr As Range
bob = "D2"
bobr = bob
this is not an actual piece of my code exactly but I need to know how to do this in order to do my bigger piece.