+ Reply to Thread
Results 1 to 8 of 8

Slow Calculations

Hybrid View

  1. #1
    mikxtr
    Guest

    Slow Calculations


    I have a file that is relying upon "sumif" statements to sum a plethora of
    data. Ok, it may not have too many rows, but rows X columns = slow file. At
    least, that's what I'm thinking. Does anyone have any suggestions on how to
    make excel more computationally efficient?

    Many thanks,
    Mickey

    P.S. I'd move it to Access, but then the powers-that-be will never read the
    report.


  2. #2
    Dave Peterson
    Guest

    Re: Slow Calculations

    Maybe using a pivottable will be quicker.

    mikxtr wrote:
    >
    > I have a file that is relying upon "sumif" statements to sum a plethora of
    > data. Ok, it may not have too many rows, but rows X columns = slow file. At
    > least, that's what I'm thinking. Does anyone have any suggestions on how to
    > make excel more computationally efficient?
    >
    > Many thanks,
    > Mickey
    >
    > P.S. I'd move it to Access, but then the powers-that-be will never read the
    > report.


    --

    Dave Peterson

  3. #3
    mikxtr
    Guest

    Re: Slow Calculations


    Maybe. But I need the report dynamic enough to generate different subtotals
    based on input from the user. Can a pivot table recalculate itself on the
    fly (e.g.
    without someone specifically recalculating the table)? If so, how?

    Thanks,
    Mickey




    "Dave Peterson" wrote:

    > Maybe using a pivottable will be quicker.
    >
    > mikxtr wrote:
    > >
    > > I have a file that is relying upon "sumif" statements to sum a plethora of
    > > data. Ok, it may not have too many rows, but rows X columns = slow file. At
    > > least, that's what I'm thinking. Does anyone have any suggestions on how to
    > > make excel more computationally efficient?
    > >
    > > Many thanks,
    > > Mickey
    > >
    > > P.S. I'd move it to Access, but then the powers-that-be will never read the
    > > report.

    >
    > --
    >
    > Dave Peterson
    >


  4. #4
    Dave Peterson
    Guest

    Re: Slow Calculations

    Nope.

    But pivottables aren't made to, either. If your data that creates the
    pivottable is quite large, then refreshing the pivottable could be slow, too.

    So you'd be just exchanging one slow tool for a different slow tool.

    Some options...
    Teach the users to click anywhere on the pivottable and hit the refresh icon (!)
    on that pivottable toolbar.

    If you want to refresh the pivottables on a given sheet (dedicated to the
    pivottable), you could add some code to the worksheet_activate event to update
    just those pivottables.

    Option Explicit
    Private Sub Worksheet_Activate()
    Dim myPT As PivotTable
    Application.EnableEvents = False
    For Each myPT In Me.PivotTables
    myPT.RefreshTable
    Next myPT
    Application.EnableEvents = True
    End Sub

    There are other things you could do, too. You may want to post a little more
    info to make any response relevant.

    mikxtr wrote:
    >
    > Maybe. But I need the report dynamic enough to generate different subtotals
    > based on input from the user. Can a pivot table recalculate itself on the
    > fly (e.g.
    > without someone specifically recalculating the table)? If so, how?
    >
    > Thanks,
    > Mickey
    >
    > "Dave Peterson" wrote:
    >
    > > Maybe using a pivottable will be quicker.
    > >
    > > mikxtr wrote:
    > > >
    > > > I have a file that is relying upon "sumif" statements to sum a plethora of
    > > > data. Ok, it may not have too many rows, but rows X columns = slow file. At
    > > > least, that's what I'm thinking. Does anyone have any suggestions on how to
    > > > make excel more computationally efficient?
    > > >
    > > > Many thanks,
    > > > Mickey
    > > >
    > > > P.S. I'd move it to Access, but then the powers-that-be will never read the
    > > > report.

    > >
    > > --
    > >
    > > Dave Peterson
    > >


    --

    Dave Peterson

  5. #5
    mikxtr
    Guest

    Re: Slow Calculations


    Well, here's the catch: no macros. What I'd prefer to do is store the data
    in an
    access table and pull only the necessary data through macros. But I've been
    restricted by my boss from macros (we're trying to minimize user-error),
    so there it is.

    My file generates 3 reports, each on a separate worksheet. The data is 68
    columns wide & 8000 rows deep (and growing). I inserted a couple of columns
    to run off the user menu. In other words. the user selects the criteria
    that s/he
    wants to see, and these columns look at the codes in the data and return info
    that determines whether that row of data is something that the report should
    include. Then I sumif based on those columns.

    So far, we've decided to make the calculations a little more linear.
    Instead of
    3 sheets calculating off the data sheet, I now have one sheet calculating
    off the data sheet and the other two sheets calculating off the first sheet.

    Does this help? Does it even make sense?

    Many thanks for your previous suggestions.

    Mickey




    "Dave Peterson" wrote:

    > Nope.
    >
    > But pivottables aren't made to, either. If your data that creates the
    > pivottable is quite large, then refreshing the pivottable could be slow, too.
    >
    > So you'd be just exchanging one slow tool for a different slow tool.
    >
    > Some options...
    > Teach the users to click anywhere on the pivottable and hit the refresh icon (!)
    > on that pivottable toolbar.
    >
    > If you want to refresh the pivottables on a given sheet (dedicated to the
    > pivottable), you could add some code to the worksheet_activate event to update
    > just those pivottables.
    >
    > Option Explicit
    > Private Sub Worksheet_Activate()
    > Dim myPT As PivotTable
    > Application.EnableEvents = False
    > For Each myPT In Me.PivotTables
    > myPT.RefreshTable
    > Next myPT
    > Application.EnableEvents = True
    > End Sub
    >
    > There are other things you could do, too. You may want to post a little more
    > info to make any response relevant.
    >
    > mikxtr wrote:
    > >
    > > Maybe. But I need the report dynamic enough to generate different subtotals
    > > based on input from the user. Can a pivot table recalculate itself on the
    > > fly (e.g.
    > > without someone specifically recalculating the table)? If so, how?
    > >
    > > Thanks,
    > > Mickey
    > >
    > > "Dave Peterson" wrote:
    > >
    > > > Maybe using a pivottable will be quicker.
    > > >
    > > > mikxtr wrote:
    > > > >
    > > > > I have a file that is relying upon "sumif" statements to sum a plethora of
    > > > > data. Ok, it may not have too many rows, but rows X columns = slow file. At
    > > > > least, that's what I'm thinking. Does anyone have any suggestions on how to
    > > > > make excel more computationally efficient?
    > > > >
    > > > > Many thanks,
    > > > > Mickey
    > > > >
    > > > > P.S. I'd move it to Access, but then the powers-that-be will never read the
    > > > > report.
    > > >
    > > > --
    > > >
    > > > Dave Peterson
    > > >

    >
    > --
    >
    > Dave Peterson
    >


  6. #6
    Dave Peterson
    Guest

    Re: Slow Calculations

    You may want to visit Charles Williams' web site:
    http://www.DecisionModels.com/calcsecrets.htm

    He has a few tips that may help.

    But you may want to talk to the boss once more. If you can make your program
    work via code and Access, then you might be reducing the number of user errors
    (although the number of developer errors could go up <vbg>).

    But if your code can eliminate much of the grunt work, I would think that the
    final results would be more, er, trustworthy.

    Remind him or her that a computer is supposed to make those mundane tasks that
    can be mechanized much more consistent (and probably lots faster!).



    mikxtr wrote:
    >
    > Well, here's the catch: no macros. What I'd prefer to do is store the data
    > in an
    > access table and pull only the necessary data through macros. But I've been
    > restricted by my boss from macros (we're trying to minimize user-error),
    > so there it is.
    >
    > My file generates 3 reports, each on a separate worksheet. The data is 68
    > columns wide & 8000 rows deep (and growing). I inserted a couple of columns
    > to run off the user menu. In other words. the user selects the criteria
    > that s/he
    > wants to see, and these columns look at the codes in the data and return info
    > that determines whether that row of data is something that the report should
    > include. Then I sumif based on those columns.
    >
    > So far, we've decided to make the calculations a little more linear.
    > Instead of
    > 3 sheets calculating off the data sheet, I now have one sheet calculating
    > off the data sheet and the other two sheets calculating off the first sheet.
    >
    > Does this help? Does it even make sense?
    >
    > Many thanks for your previous suggestions.
    >
    > Mickey
    >
    > "Dave Peterson" wrote:
    >
    > > Nope.
    > >
    > > But pivottables aren't made to, either. If your data that creates the
    > > pivottable is quite large, then refreshing the pivottable could be slow, too.
    > >
    > > So you'd be just exchanging one slow tool for a different slow tool.
    > >
    > > Some options...
    > > Teach the users to click anywhere on the pivottable and hit the refresh icon (!)
    > > on that pivottable toolbar.
    > >
    > > If you want to refresh the pivottables on a given sheet (dedicated to the
    > > pivottable), you could add some code to the worksheet_activate event to update
    > > just those pivottables.
    > >
    > > Option Explicit
    > > Private Sub Worksheet_Activate()
    > > Dim myPT As PivotTable
    > > Application.EnableEvents = False
    > > For Each myPT In Me.PivotTables
    > > myPT.RefreshTable
    > > Next myPT
    > > Application.EnableEvents = True
    > > End Sub
    > >
    > > There are other things you could do, too. You may want to post a little more
    > > info to make any response relevant.
    > >
    > > mikxtr wrote:
    > > >
    > > > Maybe. But I need the report dynamic enough to generate different subtotals
    > > > based on input from the user. Can a pivot table recalculate itself on the
    > > > fly (e.g.
    > > > without someone specifically recalculating the table)? If so, how?
    > > >
    > > > Thanks,
    > > > Mickey
    > > >
    > > > "Dave Peterson" wrote:
    > > >
    > > > > Maybe using a pivottable will be quicker.
    > > > >
    > > > > mikxtr wrote:
    > > > > >
    > > > > > I have a file that is relying upon "sumif" statements to sum a plethora of
    > > > > > data. Ok, it may not have too many rows, but rows X columns = slow file. At
    > > > > > least, that's what I'm thinking. Does anyone have any suggestions on how to
    > > > > > make excel more computationally efficient?
    > > > > >
    > > > > > Many thanks,
    > > > > > Mickey
    > > > > >
    > > > > > P.S. I'd move it to Access, but then the powers-that-be will never read the
    > > > > > report.
    > > > >
    > > > > --
    > > > >
    > > > > Dave Peterson
    > > > >

    > >
    > > --
    > >
    > > Dave Peterson
    > >


    --

    Dave Peterson

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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