+ Reply to Thread
Results 1 to 3 of 3

Auto Run (upon opening) 2 macros in sequence

Hybrid View

plsbegreen Auto Run (upon opening) 2... 02-06-2015, 08:00 PM
pjwhitfield Re: Auto Run (upon opening) 2... 02-06-2015, 08:09 PM
plsbegreen Re: Auto Run (upon opening) 2... 02-09-2015, 02:08 PM
  1. #1
    Registered User
    Join Date
    09-11-2014
    Location
    California, USA
    MS-Off Ver
    MS Office 2013
    Posts
    2

    Question Auto Run (upon opening) 2 macros in sequence

    Hi,
    My goal:
    Upon opening an excel file, using "Auto_Run" macro run "macro1" - when COMPLETE, THEN run "macro2"

    I attempted the "call" method and still, the "remove duplicates macro" completes before the query refresh.
    The query refresh takes time - I need this to complete before the duplicates are removed from the sheet named "Starlims".

    macro1 is named as "RefreshAll"
    macro2 is named as "Refresh2"


    my two SEPARATE macros:

    Sub RefreshAll()
    '
    ' RefreshAll Macro
    '

    '
    ActiveWorkbook.RefreshAll

    End Sub
    _________________________________________________________________________________________

    Sub Refresh2()
    '
    ' Refresh2 Macro
    '
    ' Keyboard Shortcut: Ctrl+d
    '
    Sheets("Starlims").Select
    ActiveSheet.Range("Table_Query_from_DWH[#All]").RemoveDuplicates Columns:= _
    Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, _
    28, 29, 30, 31, 32, 33, 34), Header:=xlYes
    End Sub


    Please help! Thank you

  2. #2
    Forum Expert
    Join Date
    10-09-2014
    Location
    Newcastle, England
    MS-Off Ver
    2003 & 2013
    Posts
    1,986

    Re: Auto Run (upon opening) 2 macros in sequence

    In your Workbook_Open event put:

    ActiveWorkbook.RefreshAll
    Sheets("Starlims").Select
    ActiveSheet.Range("Table_Query_from_DWH[#All]").RemoveDuplicates Columns:= _
    Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, _
    28, 29, 30, 31, 32, 33, 34), Header:=xlYes
    If someone has helped you then please add to their Reputation

  3. #3
    Registered User
    Join Date
    09-11-2014
    Location
    California, USA
    MS-Off Ver
    MS Office 2013
    Posts
    2

    Re: Auto Run (upon opening) 2 macros in sequence

    @pjwhitfield, this did not work. Both macros ran simultaneously and since the "remove duplicates" takes less time, the duplicates were removed before the queries were refreshed.



    Quote Originally Posted by pjwhitfield View Post
    In your Workbook_Open event put:

    ActiveWorkbook.RefreshAll
    Sheets("Starlims").Select
    ActiveSheet.Range("Table_Query_from_DWH[#All]").RemoveDuplicates Columns:= _
    Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, _
    28, 29, 30, 31, 32, 33, 34), Header:=xlYes

+ 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. How to auto generate sequence number
    By FelicityCSaycon in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 11-13-2013, 08:38 AM
  2. Auto determine the sequence
    By choy96 in forum Excel General
    Replies: 2
    Last Post: 03-31-2010, 06:38 AM
  3. Auto fill sequence
    By trakai in forum Excel General
    Replies: 13
    Last Post: 09-12-2007, 12:24 PM
  4. How do I set up Auto sequence number in excle
    By Nassir in forum Excel Charting & Pivots
    Replies: 0
    Last Post: 06-08-2006, 03:15 PM
  5. auto fill sequence...
    By tiaj in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-24-2006, 01:10 PM

Tags for this Thread

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