+ Reply to Thread
Results 1 to 14 of 14

Auto-Calc issue

  1. #1
    Registered User
    Join Date
    11-08-2004
    Posts
    41

    Auto-Calc issue

    I have a large spreadsheet with an array and several macros. For some reason, auto-calc keeps turning off and I can't figure out why. I have had to resort to putting a line in WB.open and WS.activate to ensure this doesn't happen.

    Please Login or Register  to view this content.
    I've been over my code and can't see it, but I have little understanding of the array and was wondering if that could be it. Any reason that pops out for you?

    Thanks

    Russ
    Last edited by RASelkirk; 04-11-2022 at 09:53 PM.

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,238

    Re: Auto-Calc issue

    Think you need to post ALL the code. Chances are you switch it back on inside an IF block that doesn't get executed.
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Registered User
    Join Date
    11-08-2004
    Posts
    41

    Re: Auto-Calc issue

    I think I've found the answer, still investigating the details. This write-up comes from Excel Tip of the Week #53 - Causes of formulas not calculating:

    Cause: The workbook has been placed in “Manual calculation” mode. This will mean that Excel doesn’t automatically update all formulas whenever the workbook is amended and needs to be manually forced to do so. This also means that if you copy and paste a formula (like the addition formula shown on the right), the result is copied instead of the correct answer until the manual recalculation prompt is used.

    Fix: You can either force a manual recalculation, or turn the calculation back to automatic. Note that manual calculation is usually set when the workbook is very large and unwieldy to speed up calculation times.
    I colored the relevant text...

    Russ

  4. #4
    Valued Forum Contributor
    Join Date
    07-13-2021
    Location
    California, USA
    MS-Off Ver
    2010
    Posts
    513

    Re: Auto-Calc issue

    @Russ.... You might have misunderstood the statement ``Note that manual calculation is usually set when...``.

    That does __not__ mean that Excel automatically sets manual calculation under those conditions.

    Instead, it means (one interpretation) that Excel/VBA programmers __choose__ to set manual calculation mode __in_order_to__ speed up __changes__ (errata: not calculations per se).

    -----

    Returning to your original issue: ``auto-calc keeps turning off``.

    You neglect to say __when__ that happens. But your work-around (setting xlAutomatic in Workbook.Open) suggests that perhaps you discover that auto calculation is not enabled when you open an Excel file.

    First, of course, confirm that the Excel file is saved with auto calculation set. To confirm, close all instances of Excel of, then click on the Excel file icon to open it a "fresh" instance of Excel.

    Assuming the file is saved with auto calculation set....

    Note that calculation mode is a state of the application. That state is set by the __first__ file that you open. If you open a second file in the same instance of Excel, the __application__ state is not changed.

    So I wonder if first you open a file that was saved in manual calculation mode, then in the same instance of Excel, you open a file that was saved in auto calculation mode.

    In that case, the second file will be in manual calculation mode unless and until you change the application mode.
    Last edited by curiouscat408; 04-05-2022 at 04:43 AM.

  5. #5
    Registered User
    Join Date
    11-08-2004
    Posts
    41

    Re: Auto-Calc issue

    LOL! You're prolly right, as I could find no other supporting info for my "interpretation". AFAICR, I've never had a WB with calc's set to manual, but at my age... In fact, someone here posted a test sheet for me awhile back, I'll have to dig it out and see if that was it.

    Thanks!

    Russ.

    Yessir, that was it!
    Last edited by RASelkirk; 04-05-2022 at 08:52 AM.

  6. #6
    Registered User
    Join Date
    11-08-2004
    Posts
    41

    Re: Auto-Calc issue

    Uggghh, thought this was fixed, but is still happening. I have been working exclusively with one WB and it always swaps back to manual, even with calc set to auto in code. I have put a debug line in my WB_Open, all worksheet WS_Activate, Calculate, & Change, and all VB modules. I cannot for the life of me, figure out why calculate always changes back to manual. I've even gone into my "? application.StartupPath" and cleared out everything there. There is something interesting happening though, not sure if it's related. The WS_Calculate event throws up 450 calcs:

    Please Login or Register  to view this content.
    I "think" they're from an array of indirects (row 3 to row 476), is there a way to trace them for sure? To get these numbers, I've declared "Static x as integer" and applied a counter in the WS_Calc event. Either the calc numbers are working backwards from 450 or they're being fired before WB_Open.

    Prolly two unrelated issues, but at my experience level it's better to ask...

    Russ

  7. #7
    Valued Forum Contributor
    Join Date
    07-13-2021
    Location
    California, USA
    MS-Off Ver
    2010
    Posts
    513

    Re: Auto-Calc issue

    @Russ.... Can you remove the "[SOLVED]" tag for the thread, since the problem has not, in fact, been solved to your satisfaction?

    Quote Originally Posted by RASelkirk View Post
    it always swaps back to manual
    .... When you do what, or when what happens?!

    Do any of your VBA modules "temporarily" set Manual mode?

    And do you have any third-party VBA code?

    My guess is that some VBA code accidentally leaves the calculation mode in Manual when it terminates or aborts.

    -----
    Quote Originally Posted by RASelkirk View Post
    I have put a debug line in [...] all VB modules.
    Your debug output does not help me understand what is going on.

    I suggest the following debug line at the beginning of each VBA procedure (except any that are called in a loop):

    debug.print "name of procedure: " & myCallerID & " Auto Calc: " & (Application.Calculation = xlCalculationAutomatic)

    Obviously, "name of procedure" changes for each VBA procedure.

    Put that into Workbook_Open, Workbook_BeforeClose, Workbook_BeforeSave and Workbook_AfterSave as well as others.

    EDIT.... When I say "except any that are called in a loop", I mean anything that is called so often that we cannot see the forest for the trees. For example, I would not put the debug.print statement into a Worksheet_Calculate function -- at least, not initially.

    Enter the following VBA procedure into a new normal module:
    Please Login or Register  to view this content.
    If you can identify the offending VBA procedure (i.e. the procedure that is called before the procedure with the debug.print "TRUE" output), perhaps you can add debug.print statements in strategic places in the offending procedure. Or simply set breakpoints, if feasible.

    Hopefully, that will give you some insight. Obviously, it is nearly impossible for anyone to debug the problem at arm's-length.
    Last edited by curiouscat408; 04-11-2022 at 08:57 PM.

  8. #8
    Registered User
    Join Date
    11-08-2004
    Posts
    41

    Re: Auto-Calc issue

    Quote Originally Posted by curiouscat408 View Post
    @Russ.... Can you remove the "[SOLVED]" tag for the thread, since the problem has not, in fact, been solved to your satisfaction?



    .... When you do what, or when what happens?!

    Do any of your VBA modules "temporarily" set Manual mode?

    And do you have any third-party VBA code?

    My guess is that some VBA code accidentally leaves the calculation mode in Manual when it terminates or aborts.
    Post #1 marked unsolved.

    This occurs every time I open the WB. IE, I can go to the menu bar, set calcs to auto, close the WB, reopen the WB and it shows set back to manual. Getting late here so I'll try your debugging tips tomorrow, thanks!

    No manual calc set anywhere in any code.

    No 3rd party add-ins at all. I do have this date picker, but it only gets called by a button placed on the main WS, and I've avoided doing that while trying to figure this out.

    I've also "compiled" the VBA code (never knew what that did until snooping around here!) and it throws no errors.

    Any insight on that debug window as far as event order? Looks like the iterated WS_Calculate events are running first, then the macro "borders", finally WB_Open. Is that the correct order in the immediate window or am I backwards?

    Thanks!

    Russ

  9. #9
    Valued Forum Contributor
    Join Date
    07-13-2021
    Location
    California, USA
    MS-Off Ver
    2010
    Posts
    513

    Re: Auto-Calc issue

    Quote Originally Posted by RASelkirk View Post
    I'll try your debugging tips tomorrow
    Probably no need, based on the following.

    -----
    Quote Originally Posted by RASelkirk View Post
    This occurs every time I open the WB. IE, I can go to the menu bar, set calcs to auto, close the WB, reopen the WB and it shows set back to manual.
    When you "set calcs to auto, close the WB", do you get prompted to "save" or "don't save"? And if so, which do you choose?

    Assuming that you choose "save", I would guess that there is a problem in the Workbook_Open (or Auto_Open) and/or the Workbook_BeforeSave code path.

    If you do not have either procedure, and even if you do, if you truly do not set Application.Calculation anywhere in your code or in third-party code, I'm afraid that I have run out of ideas, and I will not be able to help you.

    I would start stripping away functionality until (if) the problem goes away.

  10. #10
    Registered User
    Join Date
    11-08-2004
    Posts
    41

    Re: Auto-Calc issue

    FWIW, this is what I get:

    Please Login or Register  to view this content.
    My Excel 2002 appaerntly is too old to have "Workbook_AfterSave"

    You prompted me to try something I don't usually do. If, when I'm ready to quit, I select auto-calc from the toolbar, then save (then check again to ensure it's in auto), then close the WB, it stays in auto mode on reopening. However, if I click the close button, then save when prompted, it has flipped itself over to manual on reopen. Never saw this before, MS programs always seemed to save the same on my 'puter regardless of the save method...

    Russ

  11. #11
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,238

    Re: Auto-Calc issue

    Given that you haven't shared the code or a sample workbook, I'm not sure what you expect anyone to do other than play guessing games.

    Sounds like something is switching calculation to manual and it isn’t being reset to automatic.

    Your own debugging shows that

  12. #12
    Registered User
    Join Date
    11-08-2004
    Posts
    41

    Re: Auto-Calc issue

    Well, I'm certainly not an expert, and I'm not expecting anything. Was simply hoping this was a common issue with a logical explanation, obviously it's not. If I posted the code, it would be several pages, my WB is 5.2 megs covering 7 years worth of (personal) data, and even if I knew what to strip out (that wouldn't affect the outcome), I don't have the time nor inclination to do it.

    Anyhow, it stays on auto-calc if I use the ribbon "save" before closing with the titlebar "x"...

    Thanks for your consideration,

    Russ

  13. #13
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: Auto-Calc issue

    I couldn't agree more with what TMS told you. If you don't provide the information he has been asking for, it renders this thread of yours futile to pursue.

    The Code itself where your problem originates from, should be "small" enough to be uploaded here.

    When you close the workbook with the "X", Excel usually reverts back to its original default settings.

    Good Luck.
    Last edited by Winon; 04-14-2022 at 12:39 AM. Reason: Requesting relevant Code
    Please consider:

    Be polite. Thank those who have helped you. Then Click on the star icon in the lower left part of the contributor's post and add Reputation. Cleaning up when you're done. If you are satisfied with the help you have received, then Please do Mark your thread [SOLVED] .

  14. #14
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,238

    Re: Auto-Calc issue

    The problem is unlikely to have anything to do with the data. It is quite possible that an empty workbook, or one with a few lines of "typical" but not "actual" or "live" data would suffice.

    What we need, to help you, is to see the code in context.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. User form calc, passing variables,cmb box issue
    By pecan111 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-18-2016, 08:21 AM
  2. Auto Calc
    By aresquare1 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-08-2015, 09:06 AM
  3. Solver Calc Times - Same old issue
    By B_B in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-02-2013, 10:35 PM
  4. Auto-Calc Problems
    By mindcrash in forum Excel General
    Replies: 2
    Last Post: 06-08-2007, 04:05 PM
  5. Auto calc
    By Jkalsch in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 05-15-2006, 10:30 AM
  6. Auto Calc
    By ScottS in forum Excel General
    Replies: 0
    Last Post: 02-27-2006, 02:35 PM
  7. auto calc on, but have to edit (f2) cells to force re-calc..help!
    By Curt in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-13-2006, 02:10 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1