Hi,
I would like to insert an Excel spreadsheet into a Web page but would like to change some of the data at the same time to make them more user friendly.
Is it easily possible?
Thank you for your help.
Hi,
I would like to insert an Excel spreadsheet into a Web page but would like to change some of the data at the same time to make them more user friendly.
Is it easily possible?
Thank you for your help.
If you don't mind the security risks, you can activate ActiveX and embed the Excel spreadsheet in the web page using the <object>
element (see these forum posts for some pointers). Don't browse the Internet with ActiveX enabled! You will get a virus or Trojan.
Note that the spreadsheet must be on a network drive that is accessible by all users.
If that isn't an option, then try Zoho Sheet or Google Docs. Drawback: You must give your previous data to a third party.
Last option: Use a web server to convert the Excel into HTML and use a JavaScript grid control.
Excel can export HTML files directly ("Save as...") What modification exactly do you want to do? Can you do them by hand? Do you want to automate them (how often you want to do the export?)
For small modifications, it's relatively easy to write a VBA macro (or just record it..).