Excel VBA Select multiple sheetHow can I select a number of sheets based of a list of the sheet namesHow to avoid using Select in Excel VBAMirroring column in one excel sheet to other multiple excel sheets with automatic updatingExcel VBA 2010 - Command buttons stop working with multiple sheets selectedExcel VBA: Changes to all sheets on same cellExcel Macro to hide rows across multiple sheetsMacro used on multiple workbooks to reset sheetsExcel VBA script to populate another sheet conditionallyHow to select the sheet with strings in excel vbaAddComment on multiple sheets vba Excelexcel vba Can With Worksheets(“Sheet1”) in main and in function effect the acual sheet?

Is it okay / does it make sense for another player to join a running game of Munchkin?

How do I rename a LINUX host without needing to reboot for the rename to take effect?

Hide Select Output from T-SQL

How to be diplomatic in refusing to write code that breaches the privacy of our users

Lay out the Carpet

Should my PhD thesis be submitted under my legal name?

voltage of sounds of mp3files

Teaching indefinite integrals that require special-casing

What would happen if the UK refused to take part in EU Parliamentary elections?

Efficiently merge handle parallel feature branches in SFDX

Will it be accepted, if there is no ''Main Character" stereotype?

How does it work when somebody invests in my business?

Applicability of Single Responsibility Principle

Confused about a passage in Harry Potter y la piedra filosofal

Can I Retrieve Email Addresses from BCC?

What to do with wrong results in talks?

How do I keep an essay about "feeling flat" from feeling flat?

The plural of 'stomach"

Go Pregnant or Go Home

Curses work by shouting - How to avoid collateral damage?

Can somebody explain Brexit in a few child-proof sentences?

Can I use my Chinese passport to enter China after I acquired another citizenship?

How does residential electricity work?

What is the opposite of 'gravitas'?



Excel VBA Select multiple sheet


How can I select a number of sheets based of a list of the sheet namesHow to avoid using Select in Excel VBAMirroring column in one excel sheet to other multiple excel sheets with automatic updatingExcel VBA 2010 - Command buttons stop working with multiple sheets selectedExcel VBA: Changes to all sheets on same cellExcel Macro to hide rows across multiple sheetsMacro used on multiple workbooks to reset sheetsExcel VBA script to populate another sheet conditionallyHow to select the sheet with strings in excel vbaAddComment on multiple sheets vba Excelexcel vba Can With Worksheets(“Sheet1”) in main and in function effect the acual sheet?













1















I'm trying to make a selection of multiple sheets one workbook based on run macros. At the end I have string containing sheets for selection, but my program prompt errors ...



Example:



SheetPrintPDF=Split(SheetPrintPDFTemp, ",") 
Rem Debug show me that SheetPrintPDFTemp contains "Sheet1, Sheet17, Sheet24"

Wb1.Sheets(Array(SheetPrintPDF)).Select
Rem Program error "method class sheet error"


when I write ...



Wb1.Sheets(Array("Sheet1", "Sheet17", "Sheet24")).Select 


Select works fine.










share|improve this question



















  • 1





    Could the whitespace after the comma be causing it? Try splitting on ", "

    – Mathieu Guindon
    Mar 9 '15 at 16:05











  • Just a side note: Rubberduck code inspections would flag "Use of obsolete Rem keyword" and suggest to replace it with an apostrophe ;)

    – Mathieu Guindon
    Mar 9 '15 at 16:51















1















I'm trying to make a selection of multiple sheets one workbook based on run macros. At the end I have string containing sheets for selection, but my program prompt errors ...



Example:



SheetPrintPDF=Split(SheetPrintPDFTemp, ",") 
Rem Debug show me that SheetPrintPDFTemp contains "Sheet1, Sheet17, Sheet24"

Wb1.Sheets(Array(SheetPrintPDF)).Select
Rem Program error "method class sheet error"


when I write ...



Wb1.Sheets(Array("Sheet1", "Sheet17", "Sheet24")).Select 


Select works fine.










share|improve this question



















  • 1





    Could the whitespace after the comma be causing it? Try splitting on ", "

    – Mathieu Guindon
    Mar 9 '15 at 16:05











  • Just a side note: Rubberduck code inspections would flag "Use of obsolete Rem keyword" and suggest to replace it with an apostrophe ;)

    – Mathieu Guindon
    Mar 9 '15 at 16:51













1












1








1








I'm trying to make a selection of multiple sheets one workbook based on run macros. At the end I have string containing sheets for selection, but my program prompt errors ...



Example:



SheetPrintPDF=Split(SheetPrintPDFTemp, ",") 
Rem Debug show me that SheetPrintPDFTemp contains "Sheet1, Sheet17, Sheet24"

Wb1.Sheets(Array(SheetPrintPDF)).Select
Rem Program error "method class sheet error"


when I write ...



Wb1.Sheets(Array("Sheet1", "Sheet17", "Sheet24")).Select 


Select works fine.










share|improve this question
















I'm trying to make a selection of multiple sheets one workbook based on run macros. At the end I have string containing sheets for selection, but my program prompt errors ...



Example:



SheetPrintPDF=Split(SheetPrintPDFTemp, ",") 
Rem Debug show me that SheetPrintPDFTemp contains "Sheet1, Sheet17, Sheet24"

Wb1.Sheets(Array(SheetPrintPDF)).Select
Rem Program error "method class sheet error"


when I write ...



Wb1.Sheets(Array("Sheet1", "Sheet17", "Sheet24")).Select 


Select works fine.







vba






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 9 '15 at 16:05









Mathieu Guindon

44.3k769153




44.3k769153










asked Mar 9 '15 at 15:44









Václav KyselýVáclav Kyselý

62




62







  • 1





    Could the whitespace after the comma be causing it? Try splitting on ", "

    – Mathieu Guindon
    Mar 9 '15 at 16:05











  • Just a side note: Rubberduck code inspections would flag "Use of obsolete Rem keyword" and suggest to replace it with an apostrophe ;)

    – Mathieu Guindon
    Mar 9 '15 at 16:51












  • 1





    Could the whitespace after the comma be causing it? Try splitting on ", "

    – Mathieu Guindon
    Mar 9 '15 at 16:05











  • Just a side note: Rubberduck code inspections would flag "Use of obsolete Rem keyword" and suggest to replace it with an apostrophe ;)

    – Mathieu Guindon
    Mar 9 '15 at 16:51







1




1





Could the whitespace after the comma be causing it? Try splitting on ", "

– Mathieu Guindon
Mar 9 '15 at 16:05





Could the whitespace after the comma be causing it? Try splitting on ", "

– Mathieu Guindon
Mar 9 '15 at 16:05













Just a side note: Rubberduck code inspections would flag "Use of obsolete Rem keyword" and suggest to replace it with an apostrophe ;)

– Mathieu Guindon
Mar 9 '15 at 16:51





Just a side note: Rubberduck code inspections would flag "Use of obsolete Rem keyword" and suggest to replace it with an apostrophe ;)

– Mathieu Guindon
Mar 9 '15 at 16:51












2 Answers
2






active

oldest

votes


















1














The problem is that you don't need to label the array as an array in your desired code because it already is one. Try:



Wb1.Sheets(SheetPrintPDF).Select 





share|improve this answer























  • This and Mat's Mug's comment together fixed it

    – Alex
    Mar 9 '15 at 16:16











  • Hi result is "Runtime error 9 : Subscript is out of range"

    – Václav Kyselý
    Mar 10 '15 at 13:20


















0














I solved by filling the values directly into the field into the FOR loop



Example. ArrayTemp(x) = SheetPrintPDFTemp






share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f28946120%2fexcel-vba-select-multiple-sheet%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    The problem is that you don't need to label the array as an array in your desired code because it already is one. Try:



    Wb1.Sheets(SheetPrintPDF).Select 





    share|improve this answer























    • This and Mat's Mug's comment together fixed it

      – Alex
      Mar 9 '15 at 16:16











    • Hi result is "Runtime error 9 : Subscript is out of range"

      – Václav Kyselý
      Mar 10 '15 at 13:20















    1














    The problem is that you don't need to label the array as an array in your desired code because it already is one. Try:



    Wb1.Sheets(SheetPrintPDF).Select 





    share|improve this answer























    • This and Mat's Mug's comment together fixed it

      – Alex
      Mar 9 '15 at 16:16











    • Hi result is "Runtime error 9 : Subscript is out of range"

      – Václav Kyselý
      Mar 10 '15 at 13:20













    1












    1








    1







    The problem is that you don't need to label the array as an array in your desired code because it already is one. Try:



    Wb1.Sheets(SheetPrintPDF).Select 





    share|improve this answer













    The problem is that you don't need to label the array as an array in your desired code because it already is one. Try:



    Wb1.Sheets(SheetPrintPDF).Select 






    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Mar 9 '15 at 16:05









    OpiesDadOpiesDad

    2,8701925




    2,8701925












    • This and Mat's Mug's comment together fixed it

      – Alex
      Mar 9 '15 at 16:16











    • Hi result is "Runtime error 9 : Subscript is out of range"

      – Václav Kyselý
      Mar 10 '15 at 13:20

















    • This and Mat's Mug's comment together fixed it

      – Alex
      Mar 9 '15 at 16:16











    • Hi result is "Runtime error 9 : Subscript is out of range"

      – Václav Kyselý
      Mar 10 '15 at 13:20
















    This and Mat's Mug's comment together fixed it

    – Alex
    Mar 9 '15 at 16:16





    This and Mat's Mug's comment together fixed it

    – Alex
    Mar 9 '15 at 16:16













    Hi result is "Runtime error 9 : Subscript is out of range"

    – Václav Kyselý
    Mar 10 '15 at 13:20





    Hi result is "Runtime error 9 : Subscript is out of range"

    – Václav Kyselý
    Mar 10 '15 at 13:20













    0














    I solved by filling the values directly into the field into the FOR loop



    Example. ArrayTemp(x) = SheetPrintPDFTemp






    share|improve this answer





























      0














      I solved by filling the values directly into the field into the FOR loop



      Example. ArrayTemp(x) = SheetPrintPDFTemp






      share|improve this answer



























        0












        0








        0







        I solved by filling the values directly into the field into the FOR loop



        Example. ArrayTemp(x) = SheetPrintPDFTemp






        share|improve this answer















        I solved by filling the values directly into the field into the FOR loop



        Example. ArrayTemp(x) = SheetPrintPDFTemp







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jul 8 '15 at 4:50









        0m3r

        8,02292554




        8,02292554










        answered Mar 11 '15 at 12:41









        Václav KyselýVáclav Kyselý

        62




        62



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f28946120%2fexcel-vba-select-multiple-sheet%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

            Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

            2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived