#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 12
Default VB Code Issues

Hi, I can't work out what to put after (strSourceSheetName) to get it to
work, the worksheet it needs yto show is (Sheet1) - i.e. the standard
worksheet names.

'set object refs to both source and target
Set ShtSource = CurrentWrkBook.Worksheets(strSourceSheetName)
Set ShtTarget = NewWrkBook.Worksheets(strTargetSheetName)

Any help would be much appreciated.

Thanks

Windows XP Professional
Office 2003
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default VB Code Issues

As long as the variables strSourceSheetName and strTargetSheetName
contains the names of existing worksheets, and you have properly
declared your variables with the correct data types, your code should
work. I suspect the problem is in code that you did not elect to
include in your message. Something like the following should work:


Dim CurrentWrkBook As Excel.Workbook
Dim NewWrkBook As Excel.Workbook
Dim ShtSource As Excel.Worksheet
Dim ShtTarget As Excel.Worksheet
Dim strSourceSheetName As String
Dim strTargetSheetName As String

Set CurrentWrkBook = Workbooks("Book2")
Set NewWrkBook = Workbooks("Book3")
strSourceSheetName = "Sheet1"
strTargetSheetName = "Sheet2"

Set ShtSource = CurrentWrkBook.Worksheets(strSourceSheetName)
Set ShtTarget = NewWrkBook.Worksheets(strTargetSheetName)

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)




On Sun, 30 Aug 2009 13:40:01 -0700, Bob1866
wrote:

Hi, I can't work out what to put after (strSourceSheetName) to get it to
work, the worksheet it needs yto show is (Sheet1) - i.e. the standard
worksheet names.

'set object refs to both source and target
Set ShtSource = CurrentWrkBook.Worksheets(strSourceSheetName)
Set ShtTarget = NewWrkBook.Worksheets(strTargetSheetName)

Any help would be much appreciated.

Thanks

Windows XP Professional
Office 2003

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
Code to conditional format all black after date specified in code? wx4usa Excel Discussion (Misc queries) 3 December 26th 08 07:06 PM
Drop Down/List w/Code and Definition, only code entered when selec Spiritdancer Excel Worksheet Functions 2 November 2nd 07 03:57 AM
Convert a Number Code to a Text Code Traye Excel Discussion (Misc queries) 3 April 6th 07 09:54 PM
Unprotect Code Module in Code Damien Excel Discussion (Misc queries) 2 April 18th 06 03:10 PM
copying vba code to a standard code module 1vagrowr Excel Discussion (Misc queries) 2 November 23rd 05 04:00 PM


All times are GMT +1. The time now is 12:40 PM.

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"