ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Problem with macro: 1004 error (https://www.excelbanter.com/excel-programming/326629-problem-macro-1004-error.html)

[email protected]

Problem with macro: 1004 error
 
Ok... This should be simple enough. Basically the Macro grabs the
entire contents of a sheet, creates a new sheet in the workbook, and
then tries to manipulate that new sheet.

Problem is, 50% of the time, a 1004 Error occurs when it begins to
makes changes to the new sheet.

Here's the relevant code:

Sub Main
Cells.Select
Selection.Copy
Sheets.Add
ActiveSheet.Paste
Columns("A:H").Select ' this line is where it screws up
<-----rest of code irrelevant / snipped-----
End Sub

The macro literally dies the 5th line into the code (sometimes).

Suggestions??? Any help will be greatly appreciated. As I stated,
sometimes it runs like a scalded dog. Other times it dies there.

Thanks,

-Jon Pickens


Jim Thomlinson[_3_]

Problem with macro: 1004 error
 
Give this a try...

Sub Main()
Dim wksTo As Worksheet
Dim wksFrom As Worksheet

Set wksFrom = ActiveSheet
Set wksTo = Sheets.Add
wksFrom.Cells.Copy wksTo.Range("A1")

wksTo.Select
wksTo.Columns("A:H").Select ' this line is where it screws up

End Sub

It defines the sheets that we are working with explicitly, which may have
been your problem...

HTH

" wrote:

Ok... This should be simple enough. Basically the Macro grabs the
entire contents of a sheet, creates a new sheet in the workbook, and
then tries to manipulate that new sheet.

Problem is, 50% of the time, a 1004 Error occurs when it begins to
makes changes to the new sheet.

Here's the relevant code:

Sub Main
Cells.Select
Selection.Copy
Sheets.Add
ActiveSheet.Paste
Columns("A:H").Select ' this line is where it screws up
<-----rest of code irrelevant / snipped-----
End Sub

The macro literally dies the 5th line into the code (sometimes).

Suggestions??? Any help will be greatly appreciated. As I stated,
sometimes it runs like a scalded dog. Other times it dies there.

Thanks,

-Jon Pickens



[email protected]

Problem with macro: 1004 error
 
Thanks Jim... quick question. In your example, are "wksTo" and
"wksFrom" just your names for the two sheets?

I appreciate the quick reply.

-JP


[email protected]

Problem with macro: 1004 error
 
Nevermind :-) I figured it out... Thanks!



All times are GMT +1. The time now is 06:16 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com