close

Hi,

I am getting this error:

Select Method of Range Class Failed
When I run my macro that copies a selected range from one worksheet to
another. The worksheet it is copying from has values that are linked to
another workbook. My code is as follows:

Range(quot;C4:CR54quot;).Select
Selection.ClearContents

Sheets(quot;JAN06quot;).Range(quot;A4:AG60quot;).Select
Sheets(quot;Jan06quot;).Range(quot;A4:AG60quot;).Copy
Sheets(quot;3 Monthsquot;).Range(quot;A4:AG60quot;).PasteSpecial
Paste:=xlPasteValues

Sheets(quot;Feb06quot;).Range(quot;F4:AG60quot;).Select
Sheets(quot;Feb06quot;).Range(quot;F4:AG60quot;).Copy
Sheets(quot;3 Monthsquot;).Range(quot;AH4:BI60quot;).PasteSpecial
Paste:=xlPasteValues

Sheets(quot;Mar06quot;).Range(quot;F4:AJ60quot;).Select
Sheets(quot;Mar06quot;).Range(quot;F4:AJ60quot;).Copy
Sheets(quot;3 Monthsquot;).Range(quot;BJ4:CN60quot;).PasteSpecial
Paste:=xlPasteValuesThe ranges clearly exist and so do the workbooks yet it gives me that
error. Why is this?Hi,

Is there a way to save a workbook so that when you open it again by double
clicking its ikon, you can have the same view settings (for example same
toolbox components displayed), even if sombody else used excell and changed
its settings.

In other words, I want to save the workbook so that it always opens with the
same view settings.

Thanks in advance
--
Ayse


I'm not an expert but try this:

Range(quot;C4:CR54quot;).Select
Selection.ClearContents

Sheets(quot;JAN06quot;).Activate
Range(quot;A4:AG60quot;).Select
Selection.Copy
Sheets(quot;3 Monthsquot;).Activate
Range(quot;A4:AG60quot;).Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:=
_
False, Transpose:=FalseSheets(quot;Feb06quot;).Activate
Range(quot;F4:AG60quot;).Select
Selction.Copy
Sheets(quot;3 Monthsquot;).Activate
Range(quot;AH4:BI60quot;).Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:=
_
False, Transpose:=FalseSheets(quot;Mar06quot;).Activate
Range(quot;F4:AJ60quot;).Select
Selection.Copy
Sheets(quot;3 Monthsquot;).Activate
Range(quot;BJ4:CN60quot;).Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:=
_
False, Transpose:=FalseHTH
JG--
pinmaster
------------------------------------------------------------------------
pinmaster's Profile: www.excelforum.com/member.php...foamp;userid=6261
View this thread: www.excelforum.com/showthread...hreadid=498957I'm no VBA expert but I believe that the code is blowing up because Sheet
Feb06 is not the active sheet. To cointinue using your code change it to:

Sheets(quot;JAN06quot;).Select
Range(quot;C4:CR54quot;).Select
Selection.ClearContents

Range(quot;A4:AG60quot;).Select
Selection.Copy
Sheets(quot;3 Monthsquot;).Range(quot;A4:AG60quot;).PasteSpecial
Paste:=xlPasteValues

Sheets(quot;Feb06quot;).Select
Range(quot;F4:AG60quot;).Select
Selection.Copy
Sheets(quot;3 Monthsquot;).Range(quot;AH4:BI60quot;).PasteSpecial
Paste:=xlPasteValues

Sheets(quot;Mar06quot;).Select
Selection.Copy
Sheets(quot;3 Monthsquot;).Range(quot;BJ4:CN60quot;).PasteSpecial
Paste:=xlPasteValues

However, you do not need to select anything to copy and paste it. Here is
our code re-written to avaid selecting:

Sub NewCode()
Application.ScreenUpdating = False

With Sheets(quot;JAN06quot;)
.Range(quot;C4:CR54quot;).ClearContents
.Range(quot;A4:AG60quot;).Copy
With Sheets(quot;3 Monthsquot;)
.Range(quot;A4quot;).PasteSpecial Paste:=xlPasteValues
End With
End With

With Sheets(quot;Feb06quot;)
.Range(quot;F4:AG60quot;).Copy
With Sheets(quot;3 Monthsquot;)
.Range(quot;AH4quot;).PasteSpecial Paste:=xlPasteValues
End With
End With

With Sheets(quot;Mar06quot;)
.Range(quot;F4:AJ60quot;).Copy
With Sheets(quot;3 Monthsquot;)
.Range(quot;BJ4quot;).PasteSpecial Paste:=xlPasteValues
End With
End With

Application.CutCopyMode = False
applciation.ScreenUpdating = True

End Sub
Sandy
with @tiscali.co.uk
quot;Najiquot; gt; wrote in message ups.com...
gt; Hi,
gt;
gt; I am getting this error:
gt;
gt; Select Method of Range Class Failed
gt;
gt;
gt;
gt; When I run my macro that copies a selected range from one worksheet to
gt; another. The worksheet it is copying from has values that are linked to
gt; another workbook. My code is as follows:
gt;
gt; Range(quot;C4:CR54quot;).Select
gt; Selection.ClearContents
gt;
gt; Sheets(quot;JAN06quot;).Range(quot;A4:AG60quot;).Select
gt; Sheets(quot;Jan06quot;).Range(quot;A4:AG60quot;).Copy
gt; Sheets(quot;3 Monthsquot;).Range(quot;A4:AG60quot;).PasteSpecial
gt; Paste:=xlPasteValues
gt;
gt; Sheets(quot;Feb06quot;).Range(quot;F4:AG60quot;).Select
gt; Sheets(quot;Feb06quot;).Range(quot;F4:AG60quot;).Copy
gt; Sheets(quot;3 Monthsquot;).Range(quot;AH4:BI60quot;).PasteSpecial
gt; Paste:=xlPasteValues
gt;
gt; Sheets(quot;Mar06quot;).Range(quot;F4:AJ60quot;).Select
gt; Sheets(quot;Mar06quot;).Range(quot;F4:AJ60quot;).Copy
gt; Sheets(quot;3 Monthsquot;).Range(quot;BJ4:CN60quot;).PasteSpecial
gt; Paste:=xlPasteValues
gt;
gt;
gt; The ranges clearly exist and so do the workbooks yet it gives me that
gt; error. Why is this?
gt;


Hi Ayse

You should start your own thread, that way people can focus on your
problem, by posting on somebody else's thread you might divert
attention from his or her problem and they might not get answered.

Regards
JG--
pinmaster
------------------------------------------------------------------------
pinmaster's Profile: www.excelforum.com/member.php...foamp;userid=6261
View this thread: www.excelforum.com/showthread...hreadid=498957You can only select a range on a worksheet that's selected.

So this will fail if Jan06 isn't the activesheet:

Sheets(quot;JAN06quot;).Range(quot;A4:AG60quot;).Select

So you could add:

Sheets(quot;jan06quot;).select
Sheets(quot;JAN06quot;).Range(quot;A4:AG60quot;).SelectBut looking at your snippet of code, you could just drop the .selects and work
directly with the ranges:

Range(quot;C4:CR54quot;).ClearContents

Sheets(quot;Jan06quot;).Range(quot;A4:AG60quot;).Copy
Sheets(quot;3 Monthsquot;).Range(quot;A4:AG60quot;).PasteSpecial Paste:=xlPasteValues

Sheets(quot;Feb06quot;).Range(quot;F4:AG60quot;).Copy
Sheets(quot;3 Monthsquot;).Range(quot;AH4:BI60quot;).PasteSpecial Paste:=xlPasteValues

Sheets(quot;Mar06quot;).Range(quot;F4:AJ60quot;).Copy
Sheets(quot;3 Monthsquot;).Range(quot;BJ4:CN60quot;).PasteSpecial Paste:=xlPasteValues===
And I'd use something like:

Sheets(quot;Mar06quot;).Range(quot;F4:AJ60quot;).Copy
Sheets(quot;3 Monthsquot;).Range(quot;BJ4quot;).PasteSpecial Paste:=xlPasteValues

If you only specify the top left corner of the range that's getting pasted, then
excel will match the dimension of the copied range. (It saves me from having to
count lots of columns!)
Naji wrote:
gt;
gt; Hi,
gt;
gt; I am getting this error:
gt;
gt; Select Method of Range Class Failed
gt;
gt; When I run my macro that copies a selected range from one worksheet to
gt; another. The worksheet it is copying from has values that are linked to
gt; another workbook. My code is as follows:
gt;
gt; Range(quot;C4:CR54quot;).Select
gt; Selection.ClearContents
gt;
gt; Sheets(quot;JAN06quot;).Range(quot;A4:AG60quot;).Select
gt; Sheets(quot;Jan06quot;).Range(quot;A4:AG60quot;).Copy
gt; Sheets(quot;3 Monthsquot;).Range(quot;A4:AG60quot;).PasteSpecial
gt; Paste:=xlPasteValues
gt;
gt; Sheets(quot;Feb06quot;).Range(quot;F4:AG60quot;).Select
gt; Sheets(quot;Feb06quot;).Range(quot;F4:AG60quot;).Copy
gt; Sheets(quot;3 Monthsquot;).Range(quot;AH4:BI60quot;).PasteSpecial
gt; Paste:=xlPasteValues
gt;
gt; Sheets(quot;Mar06quot;).Range(quot;F4:AJ60quot;).Select
gt; Sheets(quot;Mar06quot;).Range(quot;F4:AJ60quot;).Copy
gt; Sheets(quot;3 Monthsquot;).Range(quot;BJ4:CN60quot;).PasteSpecial
gt; Paste:=xlPasteValues
gt;
gt; The ranges clearly exist and so do the workbooks yet it gives me that
gt; error. Why is this?

--

Dave Peterson

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 software 的頭像
    software

    software

    software 發表在 痞客邦 留言(0) 人氣()