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

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
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,223,904
Messages
6,175,295
Members
452,632
Latest member
jladair

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