Closed Thread
Results 1 to 5 of 5

Compatibility issue? Excel97/2003

  1. #1
    HBj
    Guest

    Compatibility issue? Excel97/2003

    I've developed an application in Excel97 with a small set of VBA macros and
    I update the sheets daily.

    A couple of times I updated the sheets in Excel2003, successfully run the
    macros and saved the file. After the handling in Excel2003 it is no more
    possible to save the file in Excel97 without the message
    "this file was created using a later version of Microsoft Excel ".

    I have in Excel97 recreated the file by
    - copying the worksheets from original file to a new Excel97 Workbook and
    - Copied all macros via a notepad-file to the new Excel97 VBA module.

    Now, I can successfully update worksheets and run the macros and save the
    file without the message, but

    as soon as I reopen the new file and accept the question if I want to enable
    macros, the same message comes up when I try to save the file.

    The macros are originally written in Excel 97 - no change has been made to
    those macros in Excel2003. They run successfully in both Excel versions.

    Doesn't anybody out there know what is/are different between those versions?
    It appears that only when the file includes macros, the incompatibility
    issue appears.
    But all macros are source of Excel97???



    --
    -------------------------------------------------
    Håkan Björkström
    ------------------------------------------------



  2. #2
    Don Guillett
    Guest

    Re: Compatibility issue? Excel97/2003

    Perhaps you are saving as "excel 97,etc" instead of just saving as if it
    were to be used in 2003?

    --
    Don Guillett
    SalesAid Software
    [email protected]
    "HBj" <[email protected]> wrote in message
    news:[email protected]...
    > I've developed an application in Excel97 with a small set of VBA macros

    and
    > I update the sheets daily.
    >
    > A couple of times I updated the sheets in Excel2003, successfully run the
    > macros and saved the file. After the handling in Excel2003 it is no more
    > possible to save the file in Excel97 without the message
    > "this file was created using a later version of Microsoft Excel ".
    >
    > I have in Excel97 recreated the file by
    > - copying the worksheets from original file to a new Excel97 Workbook and
    > - Copied all macros via a notepad-file to the new Excel97 VBA module.
    >
    > Now, I can successfully update worksheets and run the macros and save the
    > file without the message, but
    >
    > as soon as I reopen the new file and accept the question if I want to

    enable
    > macros, the same message comes up when I try to save the file.
    >
    > The macros are originally written in Excel 97 - no change has been made to
    > those macros in Excel2003. They run successfully in both Excel versions.
    >
    > Doesn't anybody out there know what is/are different between those

    versions?
    > It appears that only when the file includes macros, the incompatibility
    > issue appears.
    > But all macros are source of Excel97???
    >
    >
    >
    > --
    > -------------------------------------------------
    > Håkan Björkström
    > ------------------------------------------------
    >
    >




  3. #3
    Tom Ogilvy
    Guest

    Re: Compatibility issue? Excel97/2003

    Excel 2002/2003 have a more sophisticated security model than Excel 97. I
    suspect when you enable macros, some default settings are made and then
    recorded in the file when you save it. While the fileformats are
    compatible, excel 97 discards information it does not understand and thus
    the prompt.

    That would be my guess.

    --
    Regards,
    Tom Ogilvy



    "HBj" <[email protected]> wrote in message
    news:[email protected]...
    > I've developed an application in Excel97 with a small set of VBA macros

    and
    > I update the sheets daily.
    >
    > A couple of times I updated the sheets in Excel2003, successfully run the
    > macros and saved the file. After the handling in Excel2003 it is no more
    > possible to save the file in Excel97 without the message
    > "this file was created using a later version of Microsoft Excel ".
    >
    > I have in Excel97 recreated the file by
    > - copying the worksheets from original file to a new Excel97 Workbook and
    > - Copied all macros via a notepad-file to the new Excel97 VBA module.
    >
    > Now, I can successfully update worksheets and run the macros and save the
    > file without the message, but
    >
    > as soon as I reopen the new file and accept the question if I want to

    enable
    > macros, the same message comes up when I try to save the file.
    >
    > The macros are originally written in Excel 97 - no change has been made to
    > those macros in Excel2003. They run successfully in both Excel versions.
    >
    > Doesn't anybody out there know what is/are different between those

    versions?
    > It appears that only when the file includes macros, the incompatibility
    > issue appears.
    > But all macros are source of Excel97???
    >
    >
    >
    > --
    > -------------------------------------------------
    > Håkan Björkström
    > ------------------------------------------------
    >
    >




  4. #4
    HBj
    Guest

    Re: Compatibility issue? Excel97/2003

    In other words,
    Excel 97 and Excel 2003 are _not_ compatible.
    So, what can be done? Do not use same app in 97 and 2003?
    What are the security settings? Can they be checked?

    HÃ¥kan

    "Tom Ogilvy" <[email protected]> wrote in message
    news:%[email protected]...
    > Excel 2002/2003 have a more sophisticated security model than Excel 97. I
    > suspect when you enable macros, some default settings are made and then
    > recorded in the file when you save it. While the fileformats are
    > compatible, excel 97 discards information it does not understand and thus
    > the prompt.
    >
    > That would be my guess.
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    >
    >
    > "HBj" <[email protected]> wrote in message
    > news:[email protected]...
    > > I've developed an application in Excel97 with a small set of VBA macros

    > and
    > > I update the sheets daily.
    > >
    > > A couple of times I updated the sheets in Excel2003, successfully run

    the
    > > macros and saved the file. After the handling in Excel2003 it is no more
    > > possible to save the file in Excel97 without the message
    > > "this file was created using a later version of Microsoft Excel ".
    > >
    > > I have in Excel97 recreated the file by
    > > - copying the worksheets from original file to a new Excel97 Workbook

    and
    > > - Copied all macros via a notepad-file to the new Excel97 VBA module.
    > >
    > > Now, I can successfully update worksheets and run the macros and save

    the
    > > file without the message, but
    > >
    > > as soon as I reopen the new file and accept the question if I want to

    > enable
    > > macros, the same message comes up when I try to save the file.
    > >
    > > The macros are originally written in Excel 97 - no change has been made

    to
    > > those macros in Excel2003. They run successfully in both Excel versions.
    > >
    > > Doesn't anybody out there know what is/are different between those

    > versions?
    > > It appears that only when the file includes macros, the incompatibility
    > > issue appears.
    > > But all macros are source of Excel97???
    > >
    > >
    > >
    > > --
    > > -------------------------------------------------
    > > Håkan Björkström
    > > ------------------------------------------------
    > >
    > >

    >
    >




  5. #5
    Tom Ogilvy
    Guest

    Re: Compatibility issue? Excel97/2003

    You have shown that they are compatible. The question was why the message -
    I gave my best guess.

    I assume the question really is how can I operate between 97 and 2003 and
    eliminate the message as well. I don't have an answer for you on that.

    --
    Regards,
    Tom Ogilvy

    "HBj" <[email protected]> wrote in message
    news:[email protected]...
    > In other words,
    > Excel 97 and Excel 2003 are _not_ compatible.
    > So, what can be done? Do not use same app in 97 and 2003?
    > What are the security settings? Can they be checked?
    >
    > HÃ¥kan
    >
    > "Tom Ogilvy" <[email protected]> wrote in message
    > news:%[email protected]...
    > > Excel 2002/2003 have a more sophisticated security model than Excel 97.

    I
    > > suspect when you enable macros, some default settings are made and then
    > > recorded in the file when you save it. While the fileformats are
    > > compatible, excel 97 discards information it does not understand and

    thus
    > > the prompt.
    > >
    > > That would be my guess.
    > >
    > > --
    > > Regards,
    > > Tom Ogilvy
    > >
    > >
    > >
    > > "HBj" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > I've developed an application in Excel97 with a small set of VBA

    macros
    > > and
    > > > I update the sheets daily.
    > > >
    > > > A couple of times I updated the sheets in Excel2003, successfully run

    > the
    > > > macros and saved the file. After the handling in Excel2003 it is no

    more
    > > > possible to save the file in Excel97 without the message
    > > > "this file was created using a later version of Microsoft Excel ".
    > > >
    > > > I have in Excel97 recreated the file by
    > > > - copying the worksheets from original file to a new Excel97 Workbook

    > and
    > > > - Copied all macros via a notepad-file to the new Excel97 VBA module.
    > > >
    > > > Now, I can successfully update worksheets and run the macros and save

    > the
    > > > file without the message, but
    > > >
    > > > as soon as I reopen the new file and accept the question if I want to

    > > enable
    > > > macros, the same message comes up when I try to save the file.
    > > >
    > > > The macros are originally written in Excel 97 - no change has been

    made
    > to
    > > > those macros in Excel2003. They run successfully in both Excel

    versions.
    > > >
    > > > Doesn't anybody out there know what is/are different between those

    > > versions?
    > > > It appears that only when the file includes macros, the

    incompatibility
    > > > issue appears.
    > > > But all macros are source of Excel97???
    > > >
    > > >
    > > >
    > > > --
    > > > -------------------------------------------------
    > > > Håkan Björkström
    > > > ------------------------------------------------
    > > >
    > > >

    > >
    > >

    >
    >




Closed 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