+ Reply to Thread
Results 1 to 3 of 3

Proper syntax to run macro

  1. #1
    Forum Contributor
    Join Date
    12-06-2012
    Location
    sacramento,calif
    MS-Off Ver
    Excel 2010
    Posts
    217

    Proper syntax to run macro

    Trying to run macro from another book which is open but not active such as:

    Run ("'workbookone.xlsm'!SORTF")

    Except I need to do it like this by referencing part of the name of the workbook from a range:

    Run ("'workbook" & range("A1") & ".xlsm"' !SORTF")

    The "one" part of the name would come from range("A1").

    Not sure if this possible or I don't have the quotes done correctly but it doesn't work.

  2. #2
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: Proper syntax to run macro

    The red quote isn't needed and the space between ' !

    Change this...
    Run ("'workbook" & range("A1") & ".xlsm"' !SORTF")

    To this...
    Run ("'workbook" & range("A1") & ".xlsm'!SORTF")
    Surround your VBA code with CODE tags e.g.;
    [CODE]your VBA code here[/CODE]
    The # button in the forum editor will apply CODE tags around your selected text.

  3. #3
    Forum Contributor
    Join Date
    12-06-2012
    Location
    sacramento,calif
    MS-Off Ver
    Excel 2010
    Posts
    217

    Re: Proper syntax to run macro

    I modified my code a bit and just used this which works:

    Run (ActiveWorkbook.Name & "!SORTF")

+ 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. [SOLVED] proper syntax
    By lundy in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 12-10-2012, 01:44 PM
  2. Proper syntax for IF statement within macro
    By rap73 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-30-2012, 11:25 PM
  3. Proper syntax for this
    By Barb Reinhardt in forum Excel General
    Replies: 1
    Last Post: 08-04-2006, 09:20 AM
  4. [SOLVED] Proper SQL Syntax - DAO
    By MSweetG222 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-17-2006, 05:35 PM
  5. Is this proper syntax?
    By Shelby Haynes in forum Excel General
    Replies: 3
    Last Post: 05-10-2005, 05:06 AM

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