+ Reply to Thread
Results 1 to 6 of 6

Changing Macro Name?

Hybrid View

  1. #1
    Mike
    Guest

    Changing Macro Name?

    Hi everyone,

    Say I created a macro I named "Base" in a an excel workbook named
    ABC.xls

    Later, say I changed the file name to DEF.xls

    Now, when I click on the macro button to execute, I get "out of range"
    error and the file close!

    How can I make the macro name is independent of the file name; so it
    doesn't keep referring to the old file name?

    Regards,
    Mike


  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Mike,

    Macros are independent of the file's name they were created in. I suspect you have a reference in your macro to the old file name. Check your macro again.

    Regards,
    Leith Ross

  3. #3
    Tom Ogilvy
    Guest

    Re: Changing Macro Name?

    You can't. The macro is contained in the file, so it is part of the
    identification.

    If you want to rename the file, open it in excel and rename it by doing a
    file saveas.

    --
    Regards,
    Tom Ogilvy

    "Mike" <mas_it_2000@yahoo.com> wrote in message
    news:1106674847.942020.79990@z14g2000cwz.googlegroups.com...
    > Hi everyone,
    >
    > Say I created a macro I named "Base" in a an excel workbook named
    > ABC.xls
    >
    > Later, say I changed the file name to DEF.xls
    >
    > Now, when I click on the macro button to execute, I get "out of range"
    > error and the file close!
    >
    > How can I make the macro name is independent of the file name; so it
    > doesn't keep referring to the old file name?
    >
    > Regards,
    > Mike
    >




  4. #4
    Tom Ogilvy
    Guest

    Re: Changing Macro Name?

    Jake read your post differently from me - and after rereading your post,
    perhaps he is correct.

    I saw button and thought you had assigned the macro to a command button or
    other type of button.

    So my comments would only be appropriate in that context.

    --
    Regards,
    Tom Ogilvy

    "Tom Ogilvy" <twogilvy@msn.com> wrote in message
    news:epG7gtwAFHA.1188@tk2msftngp13.phx.gbl...
    > You can't. The macro is contained in the file, so it is part of the
    > identification.
    >
    > If you want to rename the file, open it in excel and rename it by doing a
    > file saveas.
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    > "Mike" <mas_it_2000@yahoo.com> wrote in message
    > news:1106674847.942020.79990@z14g2000cwz.googlegroups.com...
    > > Hi everyone,
    > >
    > > Say I created a macro I named "Base" in a an excel workbook named
    > > ABC.xls
    > >
    > > Later, say I changed the file name to DEF.xls
    > >
    > > Now, when I click on the macro button to execute, I get "out of range"
    > > error and the file close!
    > >
    > > How can I make the macro name is independent of the file name; so it
    > > doesn't keep referring to the old file name?
    > >
    > > Regards,
    > > Mike
    > >

    >
    >




  5. #5
    Jake Marx
    Guest

    Re: Changing Macro Name?

    Hi Tom,

    Tom Ogilvy wrote:
    > Jake read your post differently from me - and after rereading your
    > post, perhaps he is correct.
    >
    > I saw button and thought you had assigned the macro to a command
    > button or other type of button.


    Hmmm....after reading this post and rereading the OP's post, I think you may
    be the one who interpreted the question correctly. <g>

    --
    Regards,

    Jake Marx
    MS MVP - Excel
    www.longhead.com

    [please keep replies in the newsgroup - email address unmonitored]


  6. #6
    Jake Marx
    Guest

    Re: Changing Macro Name?

    Mike,

    Does your code look like this?

    Workbooks("ABC.xls").Sheets("Sheet1").Range("A1").Value=1

    If so, change it to:

    ThisWorkbook.Sheets("Sheet1").Range("A1").Value=1

    ThisWorkbook will always return a reference to the workbook in which the VBA
    code resides, so you don't have to worry about name changes.

    --
    Regards,

    Jake Marx
    MS MVP - Excel
    www.longhead.com

    [please keep replies in the newsgroup - email address unmonitored]


    Mike wrote:
    > Hi everyone,
    >
    > Say I created a macro I named "Base" in a an excel workbook named
    > ABC.xls
    >
    > Later, say I changed the file name to DEF.xls
    >
    > Now, when I click on the macro button to execute, I get "out of range"
    > error and the file close!
    >
    > How can I make the macro name is independent of the file name; so it
    > doesn't keep referring to the old file name?
    >
    > Regards,
    > Mike



+ 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