M
Michael Jurewitz
Has anyone noticed that Excel 2004 for the Mac has problems in VBA in
copying ranges of data? I use the following method to copy a column I
use as a template for formatting and populate it across my sheet for
as many columns as I need:
For mjCounter = 0 To (mjNumContracts - 2)
Range("B:B").Select
Selection.Copy
Range("B:B").Offset(0, 1 + mjCounter).Range("A:A").Select
ActiveSheet.Paste
Next mjCounter
When I go to run the subroutine that uses this method, I get the
following error:
Run-time error '1004'
Copy method of Range class failed.
Is this a known issue? Are there ways to fix it? Thanks for your
help!
-Mike Jurewitz
copying ranges of data? I use the following method to copy a column I
use as a template for formatting and populate it across my sheet for
as many columns as I need:
For mjCounter = 0 To (mjNumContracts - 2)
Range("B:B").Select
Selection.Copy
Range("B:B").Offset(0, 1 + mjCounter).Range("A:A").Select
ActiveSheet.Paste
Next mjCounter
When I go to run the subroutine that uses this method, I get the
following error:
Run-time error '1004'
Copy method of Range class failed.
Is this a known issue? Are there ways to fix it? Thanks for your
help!
-Mike Jurewitz