Click here to Skip to main content
15,889,909 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello I plan on using the code below alot.

VB
Application.Goto (ActiveWorkbook.Sheets("clients").Range(""))


Instead of writing the ActiveWorkbook.Sheets("") alot how do I make this as a variable. I tried just doing a Dim variable as string = that. But it gave me an error. Is there a way to do this? This should hopefully be easy to answer. Thanks in Advance.
Posted
Updated 15-Oct-12 14:09pm
v2

1 solution

Like this:
VB
Dim wsh As Worksheet
Dim rng As Range

Set wsh = ActiveWorkbook.Sheets("clients")
Set rng = wsh.Range("A1")

'your code...


'and after all
Set rng = Nothing
Set wsh = Nothing
 
Share this answer
 
Comments
Jefferson Daniel 16-Oct-12 16:04pm    
Hey Thx :) I was getting Workbook and Worksheet mixed up in my Trial and error.
Maciej Los 16-Oct-12 16:15pm    
You're welcome, Daniel ;)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900