Is there a difference between Excel Office 365 and Excel 2013 ? -2147417848(80010108) Error

Devonair

New Member
Joined
Apr 17, 2019
Messages
26
Hi Everyone,

I installed Excel 2013 on my PC. and made the excel workbook with VBA in it. It is now perfectly running.
When I went for work and used my newly made excel workbook. it started having many problems in our office we use Excel Office 365.

the Error I am having is
===================
Run-time error '-2147417848(80010108)':

Method 'Range' of object '_Worksheet' failed
===================

clicking Debug mode I went to this line that looks fine to me.

=============================================
Private Sub Worksheet_Change(ByVal Target As Range)

If Sheets("ARCHIVE").Range("A12") = 1 And Sheets("DATABASE").Range("B3") <> "" Then
Sheets("ARCHIVE").Range("A12").Value = 0
Call Eraser2
Call RowCount2
Call Window2
Call Mark2
End If

End sub
=============================================

So, I experimented on the case, I totally removed the if endif commands. Now it made a domino effect, the other codes are having error as well.

=============================================
Private Sub Worksheet_Change(ByVal Target As Range)

Sheets("ARCHIVE").Range("A12").Value = 0​
Call Eraser2
Call RowCount2
Call Window2
Call Mark2
End If

End sub
=============================================

Deleting this error...

This error popped up next
=============================================

Sub Eraser2()
Sheets("Report 02").Range("A5:A100").Clear
End Sub
=============================================

Deleting this error the Workbook run infinitely and hang.
all cells went big.



Can anybody explain what is happening ? :confused:


Thanks again guys.
 

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
Your description suggests either that the workbook is corrupt or, more likely, that the Office 365 installation is faulty. Try repairing the Office 365 installation.
 
Upvote 0
Your description suggests either that the workbook is corrupt or, more likely, that the Office 365 installation is faulty. Try repairing the Office 365 installation.


Thank you for your quick reply

I will ask our IT team here to have my Excel reinstalled, thanks again.
 
Upvote 0
You're suggestion worked they installed a new copy then it went OK... till something odd again happen in my next post.
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,260
Members
452,627
Latest member
KitkatToby

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