Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB Virgin needs help with Range("cell").Select function

Status
Not open for further replies.

VBScriptVirgin

Technical User
Apr 3, 2010
1
US
I would like to pass a variable to Range("cell").Select function instead of text.

I would like to be able to update the argument of Range("cell").Select (i.e. "cell") with a variable. Is this possible?

Thanks,
VB Virgin

 
Dim yourVariable
yourVariable = "cell"
Range(yourVariable).Select

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top