+ Reply to Thread
Results 1 to 14 of 14

Activate Excel Sheet through Visual Basic 2008

  1. #1
    Forum Contributor
    Join Date
    08-27-2009
    Location
    South Africa
    MS-Off Ver
    Office 2010
    Posts
    217

    Question Activate Excel Sheet through Visual Basic 2008

    Good Evening

    I am using Visual Basic 2008 to run some macros on excel sheets. I have no problem opening an excel sheet
    Please Login or Register  to view this content.
    my problem comes when I am trying to activate an already opened (test.xls) sheet. The code I have that's getting very close is
    Please Login or Register  to view this content.
    How do I just activate the "test.xls" sheet

    Thanks

  2. #2
    Valued Forum Contributor AlvaroSiza's Avatar
    Join Date
    09-19-2007
    Location
    Staffordshire
    MS-Off Ver
    2007
    Posts
    591

    Re: Activate Excel Sheet through Visual Basic 2008

    Be sure to distinguish between Workbooks(or "books") and Worksheets(or "Sheets") as these are two seperate collections, the second a child of the first.

    How do I just activate the "test.xls" sheet?
    Do you mean that you would like to activate a specific worksheet within the test.xls workbook?
    Perhaps it was the Noid who should have avoided me...
    If you are satisfied with my solution click the small star icon on the left. Thanks
    1. Make a copy of your workbook and run the following code on your copy (just in case)
    2. With excel open, press ALT+F11 to open the Visual Basic Editor (VBE). From the "Insert" menu, select "Module".
    3. Paste the code from above into the empty white space. Close the VBE.
    4. From the developer tab, choose "Macros", select the Sub Name, and click "Run".

  3. #3
    Forum Contributor
    Join Date
    08-27-2009
    Location
    South Africa
    MS-Off Ver
    Office 2010
    Posts
    217

    Re: Activate Excel Sheet through Visual Basic 2008

    sorry what I mean is that I want to activate the actual workbook, but you have a point there.....once I activated the workbook I will have to activate certain sheets within the workbook.

    Thanks

  4. #4
    Forum Contributor
    Join Date
    08-27-2009
    Location
    South Africa
    MS-Off Ver
    Office 2010
    Posts
    217

    Re: Activate Excel Sheet through Visual Basic 2008

    this is another code I have but I get nothing out of this, the code looks like it should do the trick but all it does is open another excel process
    Please Login or Register  to view this content.

  5. #5
    Valued Forum Contributor AlvaroSiza's Avatar
    Join Date
    09-19-2007
    Location
    Staffordshire
    MS-Off Ver
    2007
    Posts
    591

    Re: Activate Excel Sheet through Visual Basic 2008

    Something like this should allow you to activate an already open, but not primary workbook

    Please Login or Register  to view this content.
    Once the correct (already open, but not activated) workbook is activated, it will be ThisWorkbook, so you could then activate a sheet via:
    Please Login or Register  to view this content.
    or
    Please Login or Register  to view this content.
    Last edited by AlvaroSiza; 05-09-2012 at 05:06 PM.

  6. #6
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Activate Excel Sheet through Visual Basic 2008

    you need getobject instead of createobject to get a reference to a running instance though you could just add wb.activate to your original code I reckon.
    Josie

    if at first you don't succeed try doing it the way your wife told you to

  7. #7
    Forum Contributor
    Join Date
    08-27-2009
    Location
    South Africa
    MS-Off Ver
    Office 2010
    Posts
    217

    Re: Activate Excel Sheet through Visual Basic 2008

    I am lost, nothing works

  8. #8
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Activate Excel Sheet through Visual Basic 2008

    what happens if you use wb.activate at the end of the second bit of code in your first post? ("nothing works" doesn't help us to help you)

  9. #9
    Forum Contributor
    Join Date
    08-27-2009
    Location
    South Africa
    MS-Off Ver
    Office 2010
    Posts
    217

    Re: Activate Excel Sheet through Visual Basic 2008

    if I add wb.activate it adds the () and doesn't do anything, it's like I added a button with no code. I think my problem is with
    Please Login or Register  to view this content.

  10. #10
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Activate Excel Sheet through Visual Basic 2008

    it won't bring the excel application to the foreground if it isn't already there but it should activate that workbook within the application. it shouldn't really be necessary to activate anything though.

  11. #11
    Forum Contributor
    Join Date
    08-27-2009
    Location
    South Africa
    MS-Off Ver
    Office 2010
    Posts
    217

    Re: Activate Excel Sheet through Visual Basic 2008

    I see what you mean, why would it not bring the actual application to the foreground? you see my problem is that I will have a few sheets open and the data will run between the sheets with some code. I guess if it activates the workbook the code can continue moving data am I right?

  12. #12
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Activate Excel Sheet through Visual Basic 2008

    because you haven't told it to-you've only really changed the z order of the child workbook window
    your code should specify the workbook instead of relying on the activeworkbook being the right one but activating within the app should work, since that's where the code will run.

  13. #13
    Forum Contributor
    Join Date
    08-27-2009
    Location
    South Africa
    MS-Off Ver
    Office 2010
    Posts
    217

    Re: Activate Excel Sheet through Visual Basic 2008

    but how do you tell it to? I have tried select, show, visible = true and none of them brings it to the foreground. Am i missing something? I went back to this code because it makes more sense.
    Please Login or Register  to view this content.
    yet it doesn't bring it to the foreground.

  14. #14
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Activate Excel Sheet through Visual Basic 2008

    that code creates a new instance of excel so there won't be any workbooks open in it anyway (except maybe a blank Book1)

+ 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