Advertisement

09.25.2008 at 10:10AM PDT, ID: 23763338
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.8

VBA to copy worksheet to another workbook

Asked by Sandi1 in VB Script, Microsoft Excel Spreadsheet Software

Tags:

Hi All - Another forum member (thanks P.K.) was kind enough to provide me with the following code.  As luck would have it, i have had to restructure my workbook and need to revise the code.  Would appreciate your assistance!

- The code will be run from the active workbook, sheet named "MGR_REPORT" (previously this was a named range).  I modified original code to include:  Sheets("MGR_REPORT").Select and i assume this is fine because job does not crash at this point.
- The MGR_REPORT sheet is protected so i added the line ActiveSheet.Unprotect.  I assume this is correct as the job is not crashing at this particular point. This is required because the MGR_REPORT is protected and in order to copy/paste special/value i need to unprotect.
- previous requirement was to copy/paste special values from range.  As the MGR_REPORT worksheet has formulas, i need to include a similar form of copy/paste special values.  This line is currently giving me an error msg ("pastespecial method of range class failed".

So what is happening now, is that a new workbook opens (with default "Book1" name) and data is not being copied over.

Sorry for botching this up!

Thanks
SandiStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
Option Explicit
Sub paster()
Dim sourcewb, destwb As Workbook
Dim TempFileName As String
Dim fname
Application.ScreenUpdating = False
 
Set sourcewb = ThisWorkbook
Sheets("MGR_REPORT").Select
 
ActiveSheet.Unprotect
 
Set destwb = Workbooks.Add
 
With destwb.Sheets(1).Cells(1, "A")
    .PasteSpecial xlPasteValues  ' THIS IS PRODUCING AN ERROR: pastespecial method of range class failed
    .PasteSpecial xlPasteFormats
    Application.CutCopyMode = False
End With
 
sourcewb.Activate
TempFileName = ActiveSheet.Range("X2").Value & " DSM Report " & Date
TempFileName = ThisWorkbook.Path & "\" & Replace(TempFileName, "/", "-") & ".xls"
destwb.Activate
fname = Application.GetSaveAsFilename(TempFileName)
If fname = False Then
Else
    destwb.SaveAs fname
End If
Application.ScreenUpdating = True
End Sub
[+][-]09.25.2008 at 10:18AM PDT, ID: 22571727

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.25.2008 at 10:34AM PDT, ID: 22571888

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.25.2008 at 10:39AM PDT, ID: 22571947

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.25.2008 at 10:44AM PDT, ID: 22572036

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.25.2008 at 11:12AM PDT, ID: 22572268

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: VB Script, Microsoft Excel Spreadsheet Software
Tags: VBA Script
Sign Up Now!
Solution Provided By: zorvek
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20081119-EE-VQP-49 / EE_QW_Related_20080208