Macro run fail, run-time error 2147417848(80010108)

f8alex

New Member
Joined
Apr 24, 2019
Messages
7
Hi all,

having issues with excel VBA and any input for this will be much appreciated. i have searched existing threads and not able to find the fix for this issue.

here are the issues :

1 After saving the model, the macro run would fail, with error message below:
Run-time error ‘-2147417848(80010108)’:
Method ‘ClearContents’ of object ‘Range’ failed.

2 Once you’ve stopped a macro (VBA) (hence, the macro run didn’t successfully complete), the macro run will always fail later and hence, users will no longer be able to run the macro unless they re-open the model.

Thanks
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Welcome to the forum.

Are there merged cells in the model?
 
Upvote 0
It also might help by posting the code !!
 
Upvote 0
Hi Michael,

Here are the codes for one of the macro file that giving intermittent errors code. i'm not sure if the uploaded code looked ok?
Code:
Sub Portfolio()
 
Dim TotalRun As Integer, StartNo As Integer
 
Dim i As Integer
Dim r As Integer
 
Dim t As Date
t = Now()
 
Dim j As Integer
Dim WB As Workbook
Dim Checklist As Variant
Dim temp, temp1, temp2 As Variant
 
Checklist = MsgBox("Have you finished the user checklist?", vbYesNo, "Checklist")
 
If Checklist = vbYes Then
    GoTo Start
    Else
    GoTo TheEnd
End If
 
Start:
 
Application.Calculation = xlCalculationManual
 
Application.ScreenUpdating = False
 
Application.Calculate
 
StartTime = Timer
 
    TotalRun = Range("TotalRun")
    startrunno = Range("StartRunNo")
    endrunno = Range("EndRunNo")
   
    Range("AggProfitTest").ClearContents
    Range("ROC_output").ClearContents
   
If endrunno > TotalRun Then
MsgBox ("EndRunNo is bigger than TotalRunNo, please check again!")
Exit Sub
 
End If
 
Application.DisplayStatusBar = True
status_temp = Application.StatusBar
 
For i = startrunno To endrunno
  
    
    Application.StatusBar = "Running Model Point " & i
   
    Worksheets("Input").Range("SerialNo") = i
   
    Application.Calculate
   
    temp = Worksheets("Aggregate").Range("AggProfitTest").Value
    temp1 = Worksheets("ProfitTest").Range("IndProfitTest").Value
   
    ReDim temp2(1 To UBound(temp, 1), 1 To UBound(temp, 2)) As Double
   
    
    For x = LBound(temp, 1) To UBound(temp, 1)
    For y = LBound(temp, 2) To UBound(temp, 2)
        
    temp2(x, y) = Nz(temp(x, y), 0#) + Nz(temp1(x, y), 0#)
   
    Next y
    Next x
 
    Worksheets("Aggregate").Range("AggProfitTest").Value = temp2
   
    Worksheets("Output").Range("A9:E9").Offset(i, 0).Value = Worksheets("ProfitTest").Range("IndivProfitTest").Value
   
    
    
Next i
 
Application.Calculate
 
Application.ScreenUpdating = True
Application.StatusBar = status_temp
 
MsgBox Format(Now() - t, "hh:mm:ss")
 
TheEnd:
 
End Sub
 
Public Function Nz(Value As Variant, ValueIfNull As Variant) As Variant
If IsError(Value) Then
Nz = ValueIfNull
ElseIf IsNull(Value) Or IsEmpty(Value) Or Value = "" Then
Nz = ValueIfNull
Else
Nz = Value
End If
 
End Function
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,520
Members
448,968
Latest member
Ajax40

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