Excel 2007 :: Selecting Multiple Ranges - Error 1004 / Method Failed

Jan 10, 2012

I am using Excel 2007 and the following code is generating an error 1004 (Method 'Range' of object '_Worksheet' failed) on the .Range select line. I am trying to select a bunch of noncontiguous ranges and then format them all at one time.

Code:

With Sheet1
.Range("B9:G9,B10:D11,E10:E11,F10:G11,A13:G13,A14:D20,E14:E20,F14:G20,A22:H22,A23:D24,E23:F24,
G23:H24,A26:H26,A27:D28,E27:F28,G27:H28,B30:G30,B31:C32,D31:E32,F31:G32,B34:G34,B35:B36,E35:E36,C35:D36,F35:
G36,B38,B39:C40,D39:D40,E39:F40,B42:G42,B43:D50,E43:E50,F43:G50,A52:G52,A53:C54,D53:D54,E53:G54,
G61:G62,H65:H66,A56:H56,A57:H60,A61:F62,A64:H64,A65:G66").Select
With Selection.Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With
End With

I've written longer lines of code, so I don't think it's a line length issue. Is there a limit to the number of ranges or cells that Excel can select at one time?

View 4 Replies


ADVERTISEMENT

Excel 2007 :: Runtime Error 1004 / PasteSpecial Method Of Range Class Failed

Jun 20, 2013

1.) I have excel 2007 and when I recorded the macro yesterday it worked just fine, but today it's coming up with the box to update values. The macro is set to open up the vendor assignment sheet and do a vlookup against the clerk and then return the information to the original sheet and then copy paste special values. 2.) Today it's also doing the calculating thing in the corner using 2 processors which it has not done before. 3.) Run-time error '1004': PasteSpecial method of Range class failed.

[code]' Keyboard Shortcut: Ctrl+r
'
Dim OriginalSheet As Workbook
Set OriginalSheet = ActiveWorkbook
Columns("B:B").Cut
With Columns("A:A")
.Insert Shift:=xlToRight
End With

[code]....

View 2 Replies View Related

Excel 2007 :: Runtime Error 1004 - Select Method Of Button Class Failed

Sep 26, 2013

My excel version is 2007 and i am on WIN7 64bit

I have a workbook with VBA which was working fine earlier. Lately i have been getting

"Runtime error 1004" Select method of button class failed.

I am adding buttons dynamically in a loop in a sheet and what surprise me is , i go to debug mode when error pops up and it points to below line

MySheet.Buttons.Add(ActiveCell.Left - 5, 25, 20).Select

but my code is running in a loop and i can see that atleast 20 buttons were added and it fails to select when it try to add this iteration. It is completely confusing me.

My entire below code is in a loop

Code:
maWrk.Cells(xIt1, yIt2).Select
mySheet.Buttons.Add(ActiveCell.Left - 5, 25, 20).Select
Selection.OnAction = "callMe"

[Code]....

I also notice that when it fails, on select method .. the button was actually added to the sheet with caption/name as "Button 65536" but then fails to select it. What makes the select to fail after adding the button? Could there be anything special with Button 65536?

Is there any better way to code the adding button and setting action and name for excel 2007?

note before entering the loop i am deleting all the shapes with myShape.Delete which name matches "btRun"

I also want to highlight that i don't have 65536 rows in my sheet. I just have 200 rows. and when this error happens it is on row 150 so firstly i wonder why it is naming the button as Button 65536. I would assume it will start with 1 and go on increments.

What makes excel to fail to select an added button in VBA?

View 6 Replies View Related

Excel 2013 :: Copy Method Of Worksheet Class Failed (Runtime Error 1004)

May 17, 2014

I'm using Excel 2013 and I'm getting an issue in vba I can't figure out. (This is something I've done several dozen time before) But everytime I try to copy a sheet in a workbook,

Sheets("Sheet1").Copy After:=WB.Sheets(WB.Sheets.Count)

I recently copied in this sheet from another workbook, and deleted all of it's formula names, but I can't copy any other sheets now either.

The Run time Error 1004: Copy method of Worksheet Class failed pops up. What is weird is that I put in a msgbox and

MsgBox (WB.Sheets.Count)

returns a "1" though the sheet has about a dozen sheets within it. I've saved the workbook and even saved it as another name.

The sheet I imported has a sheet number of 77 while the previous last sheet was 23, could this be a cause?

View 2 Replies View Related

Excel 2010 :: Runtime Error 1004 - Autofill Method Of Range Class Failed

Jul 31, 2014

The macro I'm writing (Excel 2010) is a loop that inserts a column based on a variable location, enters in a formula in the first cell, enters another formula in cell 2, then should fill that second formula to the last row, then keep going until the loop ends. There is always a chance that there will be blank cells to the left and right so I didn't use xldown. I've tried writing in multiple ways, but I keep getting the error.

Code:
Sub colfrmadd()
Range("A1").CurrentRegion.Select
colcnt2 = Selection.Columns.Count

[Code]....

View 1 Replies View Related

Run-time Error '1004' Method 'Add' Of Object ' Sheets' Failed Adding Multiple Sheets

Aug 9, 2007

I have been running a simulation for about 18 hours now and just received:

Run-time error '1004':
Method 'Add' of object ' Sheets' failed

I have been creating new sheets, importing data, pulling some values from the data then deleting the respective sheet. I am using:

ActiveWorkbook.Sheets.Add after:=Sheets(Sheets.Count)

The sheet is actually being added to the workbook, seemingly before the error. I resume the code, and a new sheet is placed in the workbook and it errors again. The Debugger stops and highlights on the code above.The sheet count number was 10895 at the error, just as an indicator of how many times the simulation has performed successfully. I am hoping this is something I can fix without having to start over...

View 9 Replies View Related

Delete Method Of Range Class Failed - Error 1004

Feb 9, 2012

I'm attempting to write an OutLook 2007 macro that extracts excel spreadsheets from incoming email and saves them as a .csv file. Before saving the file I need to delete the header row. I am getting a "Error 1004 - Delete method of range class failed" error when running this code.

Here is the code: (the bolded line is where I'm getting the error)

Public Sub ConvertToCsv2()
Dim xls As Excel.Application
Dim oWB As Excel.Workbook
Dim tmp As String
Dim ws As Excel.Worksheet

[code]....

View 7 Replies View Related

Sort Method Of Range Class Failed Error 1004

Apr 6, 2012

My code is :
Public Const GRAPH_PutData_COL1 = "A"
Public Const GRAPH_PutData_COL2 = "B"

Range(GRAPH_PutData_COL1 & "1").Sort Key1:=Range(GRAPH_PutData_COL2 & "1"), _
Order1:=xlAscending, _
DataOption1:=xlSortTextAsNumbers

it is showing error, "sort method of range class failed error 1004"

Above error only showing when first record is empty...

View 2 Replies View Related

Error 1004 Select Method Of Range Class Failed?

Aug 22, 2012

When I try to run following code, I get error

Run-time error '1004': Select method of Range class failed

Workbooks("Book1").Worsheets("Sheet1").Range("A1").select

however if I split the code like below it works perfectly

Workbooks("Book1").Worsheets("Sheet1").Select
Range("A1").select

View 3 Replies View Related

Error 1004 :: Copy Method Of Range Class Failed ...

Feb 16, 2007

When I run this code I get a run time error 1004, copy method of range class failed, I have an autofilter on and it is showing 5 rows, the 5 cells in column A of sheet2 gets copied to sheet1 OK but I get the error?

What do I need to do to fix this?

View 9 Replies View Related

Sort Method Of Range Class Failed Error 1004

May 9, 2007

i added a "Microsoft office spreadsheet 11.0 " object using additional control and used it in my form of Excel Macro. then i added some data from the combo box to the embedded excel object dispalyed. the form displays correctly and am even able to add data to cells.

but am not able to sort a column. gives me the error message "Sort method of range class failed"
have tried to make sure the sheet is active using the ".Activate" with the object name. this is the only solution available on the existing forums.

View 9 Replies View Related

Paste Method Of WorkSheet Class Failed. Error 1004

Jul 31, 2007

I am trying to filter and copy from masterlist to wholesalecertified. The data is actually pasted to WholesaleCertified, however, I got error 1004.

Sub Refresh()

With Application
.ScreenUpdating = False
.DisplayAlerts = False

Sheets("WholesaleCertified").Select
Cells.Select
Selection.ClearContents

Sheets("MasterList").Select................

View 9 Replies View Related

Error 1004 :: Method Range Of Object Global Failed

Mar 16, 2009

Method range of object global failed

When i run this ....

View 9 Replies View Related

Runtime Error 1004 - Method Rows Object_global Failed

May 12, 2009

I've got an excel spreadsheet that has a search function on it. There is a hidden tab where all the data sits, and a visible tab with a search button where you can enter a reg of a car and it brings up details from the hidden tab.

This works perfectly when I open the excel file that is on my machine. I've put the excel file on the intranet, and to open it you click a link, and when the pop up box comes up, you click 'OPEN', and the file opens up within IE. When I try and search for a reg, I get the following error!

Run-time error '1004':
Method '' of object '_Global' failed

Its really confusing because this didnt used to happen before.. so I cant see why there would be an error with the code because it used to work!

Here is my code.

Sub Button1_Click()
'Sheet module code.
'Find my data in the indicated range, on this sheet!
Dim strMessage$, strTitle$, strDefault$, strShtNm$
Dim lngMyCol&, lngLabelRow&
Dim varRegID As Variant
Dim rngMyData As Range
Dim cell As Object

View 9 Replies View Related

Error 1004 Method 'Range' Of Object '_Worksheet' Failed

Jun 28, 2006

I have a cet of CommandButtons on sheet 1. The code for these buttons is in the code section of the sheet. A named range is referenced in this code. This named range is on sheet 2. Every time I try to reference this or any named range (from any other sheet), I get this "Run-time error '1004': Method 'Range' of object '_Worksheet' failed"

The last time I had this error I was able to fix it by moving the code to Module1. I tried that here, but it did not work (I can't figure out how to call it from the sheet). CommandButton. Here is the code from the sheet for one of the buttons:

Private Sub TBEnterUp_Click()
iLast = Range("WBDate_DayLast").Value '<<<<<<<
iItem = TBEnter.Value
If iItem = iLast Then
TBEnterUp.Visible = False
Exit Sub
End If
TBEnter.Value = iItem + 1
If iItem > 0 Then TBEnterDown.Visible = True
End Sub

It is a simple number advancer. It is working in the UserForm I took it from. I have included a sample file of the problem. Feel free to look at it and borrow anything in it that you might like.

View 2 Replies View Related

Copy Method Of Worksheet Class Failed Error '1004'

Jan 6, 2007

I am getting the following error: Run-time Error '1004': Copy method of Worksheet class failed. after adding 53 worksheets to a workbook using VBA. I found several posts concerning this error in the forum. However, I did not find any responses that address the root cause or provide a solution.

View 3 Replies View Related

'Select Method' Failure 'error 1004 Select Method Of Range Class Failed'

Oct 28, 2008

My workbook holds a month template and sheets for each month. I work on modifications in the template ,but would then like to update all the monthly worksheets. I recorded a macro to show me how to start programming the vb sub, but get a runtime failure 'error 1004 Select method of range class failed' when trying to select the column to copy,

View 4 Replies View Related

Runtime Error 1004 Paste Method Of Worksheet Class Failed

Jun 6, 2005

Very new to VBA and having trouble with a simple macro running in 2003 that copies and pasts to another worksheet. Code as follows:

Private Sub CopyResults_Click()
'Select the filtered data and copy it
Range("A23").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Range("F19").Select
' Open the template and copy in the data
Workbooks.Open Filename:="C:Athens Verification DataTemplatesVerification Template.xls"
Workbooks("Verification Template.xls").Activate
ActiveSheet.Range("A1").Select
ActiveSheet.Paste
ActiveSheet.Range("A1").Select
Application.CutCopyMode = False
End Sub

When I run CopyResults, the sheet is opened and the data copied correctly, but I get a runtime error 1004 past method of worksheet class failed, with the line 'ActiveSheet.Paste' highlighted. Don't get this when I run the same macro in 2000.

View 14 Replies View Related

Run-time Error '1004' ; AutoFilter Method Of Range Class Failed

Oct 20, 2008

I lost 2 days trying to discover the bug in my program, but I coudn't find the right answer.

How can I activate the AutoFilter to show me the rows selected with "YES" ?

This is the code... The compiler stops always at the command Selection.AutoFilter.

View 14 Replies View Related

Run Time Error 1004 - Method 'Range' Of 'Object'_Global' Failed

Feb 10, 2009

I am trying to build a macro which will format the columns of a spreadsheet - basically it inserts some columns, writes formulas and highlights them. Here is a code I have got so far...

When I try to run this I get a run time error 1004 - Method 'Range' of 'Object'_Global' failed. The part of the code
Range("N2:N").FormulaR1C1 = "=(RC[-7]/RC[-2])"

is highlighted in the debugger.

Can anyone tell me why this is happening, also it would be great if you could suggest better ways of writing this code - as I am new to vba programming and most of my macros are built using the recorder and then 'working' on them.

View 11 Replies View Related

Run-time Error '1004' Method 'Range' Of Object '_Worksheet' Failed

Mar 25, 2009

I have an interesting error that only happens when there is one row of data in the worksheet (sheet2 or "Half Payout"). Rows 1 & 2 are headers, row 3 is when the data starts - if any. With either no rows of data or more than one the coding works just fine. Here is the exact error message I'm getting: Run-time error '1004': Method 'Range' of object '_Worksheet' failed.

The following code is supposed to sort the rows of data when opened and then activate the first open cell below B2.

View 6 Replies View Related

Runtime Error 1004 Pastespecial Method Of Range Class Failed

Mar 27, 2009

I am encountering this error when I try to run code I have written on my own machine. I am working with all unprotected sheets, and I am running Excel 2007. All of the sheet exist.

Here is my ....

View 10 Replies View Related

Run-time Error '1004' - PasteSpecial Method Of Range Class Failed ....

Oct 16, 2009

This very simple macro in Personal.xlsb is driving me crazy!

I want to paste a previously selected and copied range at the current position as values. The range will seldom be the same as previously, and the position where it will be posted will be random too.

The code is: ...

View 13 Replies View Related

Run Time Error '1004' Autofill Method Of Range Class Failed

Oct 26, 2009

I found the following code on your forum, but get the following error:

Run time error '1004'. Autofill method of Range class failed.

The error occurs when the spreadsheet either have 1 row of data completed or no data, can I get code to ignore the autofill when I only have 1 row or no rows completed in various spreadsheets. I have attached a copy of the spreadsheet.

View 2 Replies View Related

RunTime Error 1004 Method Range Of Object Global Failed

Oct 7, 2011

Rows keep changing so I have variables to keep track of various locations.

At this point:

tot_new_place equals 30
tot_new_cnt equals 51

I want to take the data in B30:H30 and copy, auto fill to B51:H51

I am receiving the error on this line of code:

Range("B" & tot_new_place & "").Select
Selection.AutoFill Destination:=Range("R" & tot_new_place & "C2:R" & tot_new_cnt & "C9"), Type:=xlFillDefault

View 9 Replies View Related

Runtime Error 1004 - Select Method Of Worksheet Class Failed

Sep 17, 2012

I am getting this error when trying to generate the link report ....

Debug tells me that this makes reference to a sheet is not there , I have checked and it seems to be present

It is an urgent issue as it is preventing me to generate link reports...

View 9 Replies View Related

Runtime Error 1004 Method Range Of Object Worksheet Failed

Feb 28, 2013

I M Getting Run Time Error 1004 Method Range Of Object _ Worksheet Failed

Option Explicit
Private Sub cboPart_AfterUpdate()
'On Error Resume Next

[Code]...

View 1 Replies View Related

Run Time Error '1004': PasteSpecial Method Of Range Class Failed

Jul 1, 2008

This file has been running just fine....

But now I got this

Run Time error '1004':
PasteSpecial method of Range Class failed.

View 9 Replies View Related

Runtime Error 1004 :: Paste Method Of Worksheet Class Failed

Apr 29, 2009

I have the following macro who now return a runtime error 1004, paste method of worksheet class failed.

I don't know how to change it to make it work.

Sub Paste_TOP()..

View 9 Replies View Related

RunTime Error 1004: AutoFill Method Of Range Class Failed

Jul 31, 2009

Sub ResetMacro()
Range("G26").Select
ActiveCell.FormulaR1C1 = "=Template!RC"
ActiveWorkbook.Sheets("Template").Range("G26:AE86").Copy
ActiveWorkbook.Sheets("Portfolios").Paste
Selection.AutoFill Destination:=Range("G26:AE36"), Type:=xlFillDefault
Range("G26:AE36").Select
Selection.AutoFill Destination:=Range("G26:AE86"), Type:=xlFillDefault
Range("G26:AE86").Select
End Sub

RunTime Error 1004: AutoFill method of range class failed

Takes me to the code and highlights in yellow the line in bold.

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved