XRL Report - Calculations switch off

VbaHell

Well-known Member
Joined
Jan 30, 2011
Messages
1,220
Hello all

This is a bit of a strange request

I update a report with an add on tool in Excel called "XRL"

When the report is updated "XRL" has switched the calculations function off.

I thought of trying a worksheet event change to switch the calculations back on but this is not working unless I physically enter the cell and change to trigger the event.

Has anyone come across this issue and found a fix please without having to remember to switch the calculations back on manually
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Can you edit the Addin Code? If so, look for a statement like this and add the opposing statement to turn calculations back on.

OR

Try adding these two SUBS into the "Thisworkbook" module in the VBA project that XRL is changing. If that is often a different file, then I'm not sure.

Private Sub Workbook_Activate()
Application.Calculation = xlCalculationManual
End Sub


Private Sub Workbook_Deactivate()
Application.Calculation = xlCalculationAutomatic
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,664
Members
448,976
Latest member
sweeberry

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