method add of object listrows failed

McGinley

New Member
Joined
Jan 19, 2012
Messages
2
I have an VBA application that I've built within an .xlsm file. The following code is giving me an ongoing headache in that after it's been invoke a couple of time (or a dozen times--there's no predicting), I get an error message: "method add of object listrows failed". If I debug, the problem line is the ListRows.Add line. If I continue executing the code, I get a 1004 error message related to the same line and then Excel freezes and crashes and then restarts. I'm at a loss as to what the problem could be. I have code to flush the clipboard and the FreeIt function you see below unprotects the sheet where the ListObject resides. Also, I sometimes get the error when invoking another sub the deletes lines from the ListObject. And when I've tried to workaround the Add method by simply resizing the ListObject.Range by a single row, sooner or later I get the same error message, only it's "method resize of object range failed".


I've been up and down the forums out there and can't find a satisfactory answer.

Code:
Private Sub InsertRow()
    Dim RowNr As Integer
    Dim b As Boolean
        
    b = FreeIt()
 
    If line <> -1 Then
        RowNr = line
    Else
        RowNr = Target.Rows.Count
    End If

    ClearClipboard
    
    ThisWorkbook.Worksheets("Configurator").ListObjects("Products").ListRows.Add

    RevertIt (b)
End Sub
 
Hi and Welcome to the Board,

Where is the variable "Target" being Set? Usually that parameter is used for Event Code.

Also the variable "line" is not declared or assigned within this Procedure.
Typically it's best to declare and assign variables within the Procedure they are used, or to pass them as parameters to the function.

If the problem isn't related to those variables, it could be in one of the 3 functions that are being called. Can you post those?
 
Upvote 0
Sorry. The code is actually cleaner than it looks. The items you mention are legacy and have been removed. The code actually looks like this:

Code:
Private Sub InsertRow()
    Dim b As Boolean
        
    b = FreeIt()

    ClearClipboard
    
    ThisWorkbook.Worksheets("Configurator").ListObjects("Products").ListRows.Add

    RevertIt (b)

End Sub
 
Upvote 0
Your FreeIt function is supposed to unprotect the worksheet.

Have you confirmed that when the code errors at the ListRows.Add line, the sheet has been sucessfully unprotected?

If you are still having the problem, please post the code for the 3 functions that are being called.
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top