Run-time error '-2147417848'(80010108)' method 'calculate' of object 'range' failed

Tahr

New Member
Joined
Nov 25, 2010
Messages
9
Dear All
The Macro VBA project running smoothly in MS Office 2007 Windows 7. But when I copy and run this project in MS Office 2007 Windows 8.1, the following error occur at several macros;
Run-time error '-2147417848'(80010108)' method 'calculate' of object 'range' failed
I shall be grateful if anyone can solve this problem

Thanks
Regards

Tahir
email id: tmjaved@yahoo.com
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
so, post your macro and identify where it errors out when you step through it
 
Upvote 0
Option Explicit

Code:
Private Sub CmbCv_Change()
Dim rngcv As Range
Set rngcv = Worksheets("Subacc").Range("SubAccListRng")
rngcv.Calculate   "This line where stop process"
Sheet4.Range("cellsubacc").Calculate
CMBCV.ListFillRange = "SubAccList"
'CMBCV.DropDown
End Sub
 
Last edited by a moderator:
Upvote 0
when you step through, and you hover over
"SubAccListRng" does that provide the expected values
 
Upvote 0
Option Explicit

Code:
Private Sub CmbCv_Change()
Dim rngcv As Range
Set rngcv = Worksheets("Subacc").Range("SubAccListRng")
rngcv.Calculate   "This line where stop process"
Sheet4.Range("cellsubacc").Calculate
CMBCV.ListFillRange = "SubAccList"
'CMBCV.DropDown
End Sub
In this macro CMBCV is a Combo box from ActiveX tool bar. This combo box use for Filter (Filter by character) of List of Account ledgers Linked from Worksheets("Subacc").Range("SubAccListRng").
When write a character the above error occur and data in every cell of all sheets start to flicker.
 
Upvote 0

Forum statistics

Threads
1,215,884
Messages
6,127,560
Members
449,385
Latest member
KMGLarson

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