+ Reply to Thread
Results 1 to 17 of 17

Pause and resume between series of macros

  1. #1
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Pause and resume between series of macros

    I'm looking for the best way to allow a user who doesn't know VBA to start up different series of macros.

    The big picture is a group of users have to create their own budget forecast. There are multiple phases involved, and multiple steps in each phase. Phase 1 is creating a Staffing forecast, and all the steps to creating it I can do in a series of macros, initiated by the user selecting options from a drop down box. Once it's created, that forecast will be used to drive the creation of other forecasts for travel, supplies, etc.

    The problem is this; once the Staffing forecast is created the user will need to eyeball it and make adjustments for things that can't be automated (ie his boss told him this morning that 20 unfilled Widget Maker positions aren't going to be filled, ever). I want the user to be able to make his changes to the staffing forecast and then start the next series of macros (for instance, to create his travel forecast). How do I put a "Go" button of some kind on his sheet to allow him to simply start the next series of macros? And there will be other instances where he'll need to stop at some point in the forecast creation to tweak a particular forecast, so I'd need to again be able to resume the macros after a pause for tweaking.

    I'm open to any ideas, and appreciate all the help I've gotten from this group in the past. I'm hoping for a miracle here!
    Last edited by jomili; 09-17-2010 at 10:36 AM.

  2. #2
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Re: Pause and resume between series of macros

    No responses at all? I've thought of, at the end of first process putting up a MsgBox that says something like [CODE]"Staffing forecast done; make adjustments, then do something to start next phase"]/CODE]"

    I've thought of maybe having a series of shortcut codes appear on the message box, or maybe at the bottom of the sheet having the focus. Or, having buttons appear (but then I'd have to do a macro to create them, and don't know how to do that), or have a UserForm allowing them to select the next phase. But for that I'd have to find a way to evoke the UserForm that they could do simply.

    I'm wide open to ideas, and I know there's folks much smarter than me out there. Help me, please!

  3. #3
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Re: Pause and resume between series of macros

    Hi jomili;

    Here's 1 way to accomplish what you want.

    Put a static variable in 1 macro and let them call only that macro
    Please Login or Register  to view this content.
    If you want to create buttons on the fly, let me know. I'll give you my macro that builds buttons and assigns a macros to the buttons, etc.
    Last edited by foxguy; 09-12-2010 at 05:11 PM.
    Foxguy

    Remember to mark your questions [Solved] and rate the answer(s)
    Forum Rules are Here

  4. #4
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Re: Pause and resume between series of macros

    hey Foxguy,

    Thanks for responding. I'm not sure I understand how your "ContinueWhereILeftOff" macro works, but if it works the way I think it would I'd have to have a button or shortcut for them to call that, but that would be the only button or shortcut they'd need, correct? I'd appreciate it if you could explain that one to me.

    I'd love to see your macro that builds buttons and assigns macros to the buttons. Would you mind providing it?

    I'm sure between that on your "Continue..." macro I can get it done. Thanks so much for your help!

    John

  5. #5
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Pause and resume between series of macros

    Why don't you just use a menu system with a button for each of the phases?
    Everyone who confuses correlation and causation ends up dead.

  6. #6
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Re: Pause and resume between series of macros

    Good morning RomperStomper.

    I'm not sure what you mean by a "Menu System". Please explain.

  7. #7
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Pause and resume between series of macros

    I mean menus - as in those things sitting at the top of the screen in Excel.
    (File, Edit, Insert etc)

  8. #8
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Re: Pause and resume between series of macros

    Okay, now I understand what you're saying, but not necessarily how to do what you're saying. If I'm understanding correctly, I could add a menu to the toolbar, titled something like "Steps", and within that menu have "Step 1", "Step 2", etc., with the macros triggered to run when the menu item is selected. Is that what you're suggesting?

    If so, I don't know how I'd go about setting that up so it would appear for my users. Can i add a menu item just for a specific workbook, and not as part of my (or their) PERSONAL.XLS?

    I like the idea, just need a little hand-holding to get started.

    Thanks,
    John

  9. #9
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Pause and resume between series of macros

    Have a look at J-Walk's tip here. Should give you everything you need.

  10. #10
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Re: Pause and resume between series of macros

    Thanks RomperStomper,

    It looks like that might be the way to go. Thanks for pointing me back to John Walkenbach's site. I've been through it many times, and every time find something really cool that I missed.

    Thanks,
    John

  11. #11
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Pause and resume between series of macros

    Yep - that's why he is (until the end of this month anyway) an Excel MVP!

  12. #12
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Re: Pause and resume between series of macros

    Is he retiring? What's going on?

  13. #13
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Pause and resume between series of macros

    Yep - see here. Damn shame, IMO as he's one of the real MVPs to my mind.

  14. #14
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Re: Pause and resume between series of macros

    Hi jomili;

    I agree that a menu system is a better choice than a Static variable. Menus will let the user close a file and when they open the file they can start back where they left off. A static variable would be reset to 0 when they closed the file, so they would have to restart at step 1 when they reopened the file.

    If you still want to see my macros for building buttons, I'll post them when I return in a few hours.

  15. #15
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Re: Pause and resume between series of macros

    Hi Foxguy,

    Yes, I'd still like to see your macro for building buttons. Even though I might not use it for this application, I'd love to add it to my repertoire of tricks and solutions.

    Thanks,
    John

  16. #16
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Re: Pause and resume between series of macros

    John asked that I post my button macros, so here they are:
    Please Login or Register  to view this content.
    \1

  17. #17
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Re: Pause and resume between series of macros

    Thanks Foxguy; I'm sure this post will be a big help to anyone else looking into creating buttons.

+ 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