Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default Is there a way to cross data types?

I have a situation where I'm trying to create a loop that opens a worksheet
that has the same name as a range or cell or variable. I can capture the
name from the value in a cell, but then when I try to use that name as the
name of the worksheet I get a datatype conflict. Here's an example from the
code...

Set NextTab = Users(UserLoop) ' where Users & NextTab are defined as
ranges
Set WS1 = Worksheets(NextTab) ' can't use a range this way

Any way around this?
Thanks,
Steve
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,080
Default Is there a way to cross data types?

How do you open a worksheet?

Are you trying to open a workbook, or activate a worksheet in the active
workbook?

--

Vasant


"stebro" wrote in message
...
I have a situation where I'm trying to create a loop that opens a worksheet
that has the same name as a range or cell or variable. I can capture the
name from the value in a cell, but then when I try to use that name as the
name of the worksheet I get a datatype conflict. Here's an example from
the
code...

Set NextTab = Users(UserLoop) ' where Users & NextTab are defined as
ranges
Set WS1 = Worksheets(NextTab) ' can't use a range this way

Any way around this?
Thanks,
Steve



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default Is there a way to cross data types?

Thanks for the clarification. The loop is trying to access one worksheet and
act on values, then loop to the next worksheet based on the name it finds in
the array and act on more velues in cells, etc.

Does this help? If not please forgive me - I'm way outside my comfort zone;
this type of project comes along about once every three years. Thank you so
much for your assistance ...

Steve


"Vasant Nanavati" wrote:

How do you open a worksheet?

Are you trying to open a workbook, or activate a worksheet in the active
workbook?

--

Vasant


"stebro" wrote in message
...
I have a situation where I'm trying to create a loop that opens a worksheet
that has the same name as a range or cell or variable. I can capture the
name from the value in a cell, but then when I try to use that name as the
name of the worksheet I get a datatype conflict. Here's an example from
the
code...

Set NextTab = Users(UserLoop) ' where Users & NextTab are defined as
ranges
Set WS1 = Worksheets(NextTab) ' can't use a range this way

Any way around this?
Thanks,
Steve




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,080
Default Is there a way to cross data types?

Try:

WS1 = Worksheets(NextTab.Value)

Although Value is the default property of the Range object, in this case it
seems necessary to explicitly indicate that the name of the worksheet is the
value of the NextTab range.

--

Vasant



"stebro" wrote in message
...
Thanks for the clarification. The loop is trying to access one worksheet
and
act on values, then loop to the next worksheet based on the name it finds
in
the array and act on more velues in cells, etc.

Does this help? If not please forgive me - I'm way outside my comfort
zone;
this type of project comes along about once every three years. Thank you
so
much for your assistance ...

Steve


"Vasant Nanavati" wrote:

How do you open a worksheet?

Are you trying to open a workbook, or activate a worksheet in the active
workbook?

--

Vasant


"stebro" wrote in message
...
I have a situation where I'm trying to create a loop that opens a
worksheet
that has the same name as a range or cell or variable. I can capture
the
name from the value in a cell, but then when I try to use that name as
the
name of the worksheet I get a datatype conflict. Here's an example
from
the
code...

Set NextTab = Users(UserLoop) ' where Users & NextTab are defined
as
ranges
Set WS1 = Worksheets(NextTab) ' can't use a range this way

Any way around this?
Thanks,
Steve






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,080
Default Is there a way to cross data types?

Sorry; meant:

Set WS1 = Worksheets(NextTab.Value)

of course.

--

Vasant



"Vasant Nanavati" <vasantn AT aol DOT com wrote in message
...
Try:

WS1 = Worksheets(NextTab.Value)

Although Value is the default property of the Range object, in this case
it seems necessary to explicitly indicate that the name of the worksheet
is the value of the NextTab range.

--

Vasant



"stebro" wrote in message
...
Thanks for the clarification. The loop is trying to access one worksheet
and
act on values, then loop to the next worksheet based on the name it finds
in
the array and act on more velues in cells, etc.

Does this help? If not please forgive me - I'm way outside my comfort
zone;
this type of project comes along about once every three years. Thank
you so
much for your assistance ...

Steve


"Vasant Nanavati" wrote:

How do you open a worksheet?

Are you trying to open a workbook, or activate a worksheet in the active
workbook?

--

Vasant


"stebro" wrote in message
...
I have a situation where I'm trying to create a loop that opens a
worksheet
that has the same name as a range or cell or variable. I can capture
the
name from the value in a cell, but then when I try to use that name as
the
name of the worksheet I get a datatype conflict. Here's an example
from
the
code...

Set NextTab = Users(UserLoop) ' where Users & NextTab are defined
as
ranges
Set WS1 = Worksheets(NextTab) ' can't use a range this way

Any way around this?
Thanks,
Steve









Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I hide unused file types from file types list in save dial Estra Q Excel Discussion (Misc queries) 1 December 17th 09 12:36 PM
Excel 2007 error "some chart types cannot be combined with other chart types. Select a different chart types" roadsidetree Charts and Charting in Excel 15 June 2nd 09 10:53 AM
Data types when importing Excel data to SQLServer [email protected] Excel Discussion (Misc queries) 1 September 27th 06 12:48 PM
Prob with Var Data-types.. Mourinho Excel Programming 2 October 28th 04 05:59 PM
Test for 3 types of data Stuart[_5_] Excel Programming 5 September 15th 03 02:15 PM


All times are GMT +1. The time now is 10:39 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"