Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Macro Will Not Run on Some PCs

I have a simple workbook that has a macro that parses the
ActiveWorkbook.FullName property to obtain the current path and filename
(".xls" removed). The filename is used later in a
"Workbooks(sParentWorkbook).Activate" statement where sParentWorkbook is
consistently demonstrated to contain the correct value.

The macros in the workbook work properly on my PC regardless of where I
place the spreadsheet to test the functionality.

On some PCs, however, the "Workbooks(sParentWorkbook).Activate" statement
fails with an invalid index diagnostic. In debug mode, the variable
sParentWorkbook has the correct value. The exactly identical spreadsheet, in
the same network location will open and execute without error on my PC.

All PCs are running MS Office 2000 9.0.6926 SP-3 <<


Please provide suggestions as to where to look to solve this problem.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Macro Will Not Run on Some PCs

Include the extension (.xls) in sParentWorkbook.

There's a windows setting that allows you to hide or show extensions. I'd bet
there's a difference between the settings on those pcs.

I've never seen it fail when the .xls is included.

But why not just use:

Dim myWkbk as workbook
set myWkbk = activeworkbook
'do a bunch of stuff
mywkbk.activate

'I wouldn't do this, but you could:

sParentWorkbook = activeworkbook.name
'lots of stuff
workbooks(sparentworkbook).activate

..Name won't include the path.



NoVAFolk wrote:

I have a simple workbook that has a macro that parses the
ActiveWorkbook.FullName property to obtain the current path and filename
(".xls" removed). The filename is used later in a
"Workbooks(sParentWorkbook).Activate" statement where sParentWorkbook is
consistently demonstrated to contain the correct value.

The macros in the workbook work properly on my PC regardless of where I
place the spreadsheet to test the functionality.

On some PCs, however, the "Workbooks(sParentWorkbook).Activate" statement
fails with an invalid index diagnostic. In debug mode, the variable
sParentWorkbook has the correct value. The exactly identical spreadsheet, in
the same network location will open and execute without error on my PC.

All PCs are running MS Office 2000 9.0.6926 SP-3 <<


Please provide suggestions as to where to look to solve this problem.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Macro Will Not Run on Some PCs

Thank you Dave. Your reply, and Jim's, were right on target. Indeed the
Explorer settings were different on the "non-functioning" PCs. I guess it's
just one of those thnings that one has to take into account from time to time
and I've learned my lesson.

Again, thank you.

"Dave Peterson" wrote:

Include the extension (.xls) in sParentWorkbook.

There's a windows setting that allows you to hide or show extensions. I'd bet
there's a difference between the settings on those pcs.

I've never seen it fail when the .xls is included.

But why not just use:

Dim myWkbk as workbook
set myWkbk = activeworkbook
'do a bunch of stuff
mywkbk.activate

'I wouldn't do this, but you could:

sParentWorkbook = activeworkbook.name
'lots of stuff
workbooks(sparentworkbook).activate

..Name won't include the path.



NoVAFolk wrote:

I have a simple workbook that has a macro that parses the
ActiveWorkbook.FullName property to obtain the current path and filename
(".xls" removed). The filename is used later in a
"Workbooks(sParentWorkbook).Activate" statement where sParentWorkbook is
consistently demonstrated to contain the correct value.

The macros in the workbook work properly on my PC regardless of where I
place the spreadsheet to test the functionality.

On some PCs, however, the "Workbooks(sParentWorkbook).Activate" statement
fails with an invalid index diagnostic. In debug mode, the variable
sParentWorkbook has the correct value. The exactly identical spreadsheet, in
the same network location will open and execute without error on my PC.

All PCs are running MS Office 2000 9.0.6926 SP-3 <<


Please provide suggestions as to where to look to solve this problem.


--

Dave Peterson

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
Macro recorded... tabs & file names changed, macro hangs Steve Excel Worksheet Functions 3 October 30th 09 11:41 AM
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort Gavin Excel Worksheet Functions 0 May 17th 07 01:20 PM
how to count/sum by function/macro to get the number of record to do copy/paste in macro tango Excel Programming 1 October 15th 04 01:16 PM
macro to delete entire rows when column A is blank ...a quick macro vikram Excel Programming 4 May 3rd 04 08:45 PM
Start Macro / Stop Macro / Restart Macro Pete[_13_] Excel Programming 2 November 21st 03 05:04 PM


All times are GMT +1. The time now is 01:56 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"