Run-time error -2147319767 (80028029) ... SOMETIMES

ColoKevMan

New Member
Joined
Jun 26, 2015
Messages
9
Office Version
  1. 365
Platform
  1. Windows
Hello,

Can anyone help me with why the below code SOMETIMES returns the Automation run-time error and sometimes it works just fine? The Debug highlights the Dest.Sheets("Data-Remarks").Activate line but I know that doesn't necessarily mean that's where things are hanging up.

Does it have to do with the Ranges coding not being explicit or just overall inefficiency of code? I have discovered that if, after receiving the error, Excel is closed then re-opened, the code works fine.


Rich (BB code):
Sub UpdateRemarksjb()
Application.ScreenUpdating = False
Set Orig = Workbooks.Open("filename1 on sharepoint site")
Set Dest = Workbooks.Open("filename2 on sharepoint site")
   Orig.Sheets("Jonathan B").Activate
    Range("A13:Q513").Select
    Selection.Copy
   Dest.Sheets("Data-Remarks").Activate
    Range("A1004:Q1504").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
Call ClearClipboard
   Dest.Close savechanges:=True
    Orig.Sheets("Jonathan B").Activate
    Range("A8").Select
Application.ScreenUpdating = True
End Sub
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
I think .Activate sometimes doesn't work when ScreenUpdating has been set to False.
Try this :
VBA Code:
Sub UpdateRemarksjb()
Application.ScreenUpdating = False
Set Orig = Workbooks.Open("filename1 on sharepoint site")
Set Dest = Workbooks.Open("filename2 on sharepoint site")
Dest.Sheets("Data-Remarks").Range("A1004:Q1504").Value = _
    Orig.Sheets("Jonathan B").Range("A13:Q513").Value
Dest.Close savechanges:=True
Application.ScreenUpdating = True
("Jonathan B").Activate
Range("A8").Select
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,200
Messages
6,123,612
Members
449,109
Latest member
Sebas8956

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