Running Excel on the Server

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sylvia

    Running Excel on the Server

    Dear All,

    Would appreciate if someone can help me out on this.

    I have an Excel Add-in which is only available on the web server.
    The Add-in allows user to retrieve data from a proprietary database.

    I have configured an Excel workbook to retrieve the data via the Add-in base
    on some inputs that the user enter in some cells (B7 and B8) in sheet1.

    As the clients do not have the Add-in I cannot just activate the Excel
    spreadsheet when the user request for it over the web as the formulas will
    not work.

    I have written a macro in the Excel spreadsheet such that it will
    recalculate and then make a static copy of itself.

    I would like to know how I can pass the values from an asp page to cells B7
    and B8 and then run the macro in the Excel and display the static copy for
    the user.

    Any suggestions are welcome.

    Thanks a lot!

    Newbie to ASP,
    Sylvia



  • Brynn

    #2
    Re: Running Excel on the Server

    changing the excel sheet should be easy enough with ASP ... just like
    any other db connection ...

    as far as running a macro there are threads in google about this ...



    one for example

    after the macro is done, reading the static excel page should be easy
    enough.


    On Thu, 8 Jan 2004 15:21:12 +0800, "Sylvia" <anghy@nospam.c se.com.sg>
    wrote:
    [color=blue]
    >Dear All,
    >
    >Would appreciate if someone can help me out on this.
    >
    >I have an Excel Add-in which is only available on the web server.
    >The Add-in allows user to retrieve data from a proprietary database.
    >
    >I have configured an Excel workbook to retrieve the data via the Add-in base
    >on some inputs that the user enter in some cells (B7 and B8) in sheet1.
    >
    >As the clients do not have the Add-in I cannot just activate the Excel
    >spreadsheet when the user request for it over the web as the formulas will
    >not work.
    >
    >I have written a macro in the Excel spreadsheet such that it will
    >recalculate and then make a static copy of itself.
    >
    >I would like to know how I can pass the values from an asp page to cells B7
    >and B8 and then run the macro in the Excel and display the static copy for
    >the user.
    >
    >Any suggestions are welcome.
    >
    >Thanks a lot!
    >
    >Newbie to ASP,
    >Sylvia
    >
    >
    >[/color]

    Comment

    Working...